aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorTejun Heo <htejun@gmail.com>2007-07-10 15:36:05 +0900
committerJeff Garzik <jeff@garzik.org>2007-07-24 16:55:01 -0400
commitf0a664bbd1839fbe9f57564983f39bfc6c6f931d (patch)
tree4b1e20d96fd44f3d3ec5ad2d292a4479638eae09 /include
parentLinux 2.6.23-rc1 (diff)
downloadlinux-dev-f0a664bbd1839fbe9f57564983f39bfc6c6f931d.tar.xz
linux-dev-f0a664bbd1839fbe9f57564983f39bfc6c6f931d.zip
PCI: export __pci_reenable_device()
Some odd ACPI implementations choke if certain controller is disabled when ACPI suspend is invoked but we still need to make sure the PCI device is enabled during resume. Simply using pci_enable_device() unbalances device enable count. Export __pci_reenable_device(). Signed-off-by: Tejun Heo <htejun@gmail.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/pci.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/pci.h b/include/linux/pci.h
index 5e84f2e8d54c..d8f8a3a96644 100644
--- a/include/linux/pci.h
+++ b/include/linux/pci.h
@@ -534,6 +534,7 @@ static inline int pci_write_config_dword(struct pci_dev *dev, int where, u32 val
int __must_check pci_enable_device(struct pci_dev *dev);
int __must_check pci_enable_device_bars(struct pci_dev *dev, int mask);
+int __must_check __pci_reenable_device(struct pci_dev *);
int __must_check pcim_enable_device(struct pci_dev *pdev);
void pcim_pin_device(struct pci_dev *pdev);