summaryrefslogtreecommitdiff
path: root/include/linux/pci.h
diff options
context:
space:
mode:
authorPatrick Mochel <mochel@osdl.org>2003-09-25 19:18:44 -0700
committerPatrick Mochel <mochel@osdl.org>2003-09-25 19:18:44 -0700
commitf75fd6bfc5ba0979d8f5554ee28296650dd9dd36 (patch)
tree5f765792d66a97ad4875ab195bc057cc7105b8cd /include/linux/pci.h
parent416ea79ea366f62e5693b030d6ec9a24ed82cf77 (diff)
[pci] Remove ->save_state() from struct pci_driver.
It is not called, and unused.
Diffstat (limited to 'include/linux/pci.h')
-rw-r--r--include/linux/pci.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h
index 3c4fc6c62773..654840dad226 100644
--- a/include/linux/pci.h
+++ b/include/linux/pci.h
@@ -515,7 +515,6 @@ struct pci_driver {
const struct pci_device_id *id_table; /* must be non-NULL for probe to be called */
int (*probe) (struct pci_dev *dev, const struct pci_device_id *id); /* New device inserted */
void (*remove) (struct pci_dev *dev); /* Device removed (NULL if not a hot-plug capable driver) */
- int (*save_state) (struct pci_dev *dev, u32 state); /* Save Device Context */
int (*suspend) (struct pci_dev *dev, u32 state); /* Device suspended */
int (*resume) (struct pci_dev *dev); /* Device woken up */
int (*enable_wake) (struct pci_dev *dev, u32 state, int enable); /* Enable wake event */