diff options
author | Matthew Garrett <mjg@redhat.com> | 2010-10-04 14:22:26 -0400 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2010-10-17 20:03:06 -0700 |
commit | bf4d29086972ceaeaf72544d8f64933c2cfdc992 (patch) | |
tree | 301ee83217bc9a19cef5c7569801095b4d6f89b4 /include | |
parent | 1bcd495be9ed3194f618e8af0446459dc52a1423 (diff) | |
download | linux-stable-bf4d29086972ceaeaf72544d8f64933c2cfdc992.tar.gz linux-stable-bf4d29086972ceaeaf72544d8f64933c2cfdc992.tar.bz2 linux-stable-bf4d29086972ceaeaf72544d8f64933c2cfdc992.zip |
PCI: Export some PCI PM functionality
It's helpful to have some extra PCI power management functions available to
platform code, so move the declarations to an exported header.
Acked-by: Rafael J. Wysocki <rjw@sisk.pl>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/pci.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h index 30faf4f3db0b..7454408c41b6 100644 --- a/include/linux/pci.h +++ b/include/linux/pci.h @@ -819,6 +819,9 @@ pci_power_t pci_target_state(struct pci_dev *dev); int pci_prepare_to_sleep(struct pci_dev *dev); int pci_back_from_sleep(struct pci_dev *dev); bool pci_dev_run_wake(struct pci_dev *dev); +bool pci_check_pme_status(struct pci_dev *dev); +void pci_wakeup_event(struct pci_dev *dev); +void pci_pme_wakeup_bus(struct pci_bus *bus); static inline int pci_enable_wake(struct pci_dev *dev, pci_power_t state, bool enable) |