aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/pci.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/pci/pci.c')
-rw-r--r--drivers/pci/pci.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index 7e9c0f3936dd..1b807330e500 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -1286,6 +1286,26 @@ void pci_pm_init(struct pci_dev *dev)
1286} 1286}
1287 1287
1288/** 1288/**
1289 * platform_pci_wakeup_init - init platform wakeup if present
1290 * @dev: PCI device
1291 *
1292 * Some devices don't have PCI PM caps but can still generate wakeup
1293 * events through platform methods (like ACPI events). If @dev supports
1294 * platform wakeup events, set the device flag to indicate as much. This
1295 * may be redundant if the device also supports PCI PM caps, but double
1296 * initialization should be safe in that case.
1297 */
1298void platform_pci_wakeup_init(struct pci_dev *dev)
1299{
1300 if (!platform_pci_can_wakeup(dev))
1301 return;
1302
1303 device_set_wakeup_capable(&dev->dev, true);
1304 device_set_wakeup_enable(&dev->dev, false);
1305 platform_pci_sleep_wake(dev, false);
1306}
1307
1308/**
1289 * pci_add_save_buffer - allocate buffer for saving given capability registers 1309 * pci_add_save_buffer - allocate buffer for saving given capability registers
1290 * @dev: the PCI device 1310 * @dev: the PCI device
1291 * @cap: the capability to allocate the buffer for 1311 * @cap: the capability to allocate the buffer for