diff options
Diffstat (limited to 'drivers/pci/pci-acpi.c')
-rw-r--r-- | drivers/pci/pci-acpi.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/drivers/pci/pci-acpi.c b/drivers/pci/pci-acpi.c index 6bc0d8c870af..7764768b6a0e 100644 --- a/drivers/pci/pci-acpi.c +++ b/drivers/pci/pci-acpi.c | |||
@@ -299,10 +299,30 @@ static int acpi_pci_set_power_state(struct pci_dev *dev, pci_power_t state) | |||
299 | return error; | 299 | return error; |
300 | } | 300 | } |
301 | 301 | ||
302 | static bool acpi_pci_can_wakeup(struct pci_dev *dev) | ||
303 | { | ||
304 | acpi_handle handle = DEVICE_ACPI_HANDLE(&dev->dev); | ||
305 | |||
306 | return handle ? acpi_bus_can_wakeup(handle) : false; | ||
307 | } | ||
308 | |||
309 | static int acpi_pci_sleep_wake(struct pci_dev *dev, bool enable) | ||
310 | { | ||
311 | int error = acpi_pm_device_sleep_wake(&dev->dev, enable); | ||
312 | |||
313 | if (!error) | ||
314 | dev_printk(KERN_INFO, &dev->dev, | ||
315 | "wake-up capability %s by ACPI\n", | ||
316 | enable ? "enabled" : "disabled"); | ||
317 | return error; | ||
318 | } | ||
319 | |||
302 | static struct pci_platform_pm_ops acpi_pci_platform_pm = { | 320 | static struct pci_platform_pm_ops acpi_pci_platform_pm = { |
303 | .is_manageable = acpi_pci_power_manageable, | 321 | .is_manageable = acpi_pci_power_manageable, |
304 | .set_state = acpi_pci_set_power_state, | 322 | .set_state = acpi_pci_set_power_state, |
305 | .choose_state = acpi_pci_choose_state, | 323 | .choose_state = acpi_pci_choose_state, |
324 | .can_wakeup = acpi_pci_can_wakeup, | ||
325 | .sleep_wake = acpi_pci_sleep_wake, | ||
306 | }; | 326 | }; |
307 | 327 | ||
308 | /* ACPI bus type */ | 328 | /* ACPI bus type */ |