aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/pci-acpi.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/pci/pci-acpi.c')
-rw-r--r--drivers/pci/pci-acpi.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/pci/pci-acpi.c b/drivers/pci/pci-acpi.c
index 2e7a3bf13824..5342e037e37f 100644
--- a/drivers/pci/pci-acpi.c
+++ b/drivers/pci/pci-acpi.c
@@ -295,14 +295,12 @@ static int acpi_dev_run_wake(struct device *phys_dev, bool enable)
295 if (!dev->wakeup.run_wake_count++) { 295 if (!dev->wakeup.run_wake_count++) {
296 acpi_enable_wakeup_device_power(dev, ACPI_STATE_S0); 296 acpi_enable_wakeup_device_power(dev, ACPI_STATE_S0);
297 acpi_enable_gpe(dev->wakeup.gpe_device, 297 acpi_enable_gpe(dev->wakeup.gpe_device,
298 dev->wakeup.gpe_number, 298 dev->wakeup.gpe_number);
299 ACPI_GPE_TYPE_RUNTIME);
300 } 299 }
301 } else if (dev->wakeup.run_wake_count > 0) { 300 } else if (dev->wakeup.run_wake_count > 0) {
302 if (!--dev->wakeup.run_wake_count) { 301 if (!--dev->wakeup.run_wake_count) {
303 acpi_disable_gpe(dev->wakeup.gpe_device, 302 acpi_disable_gpe(dev->wakeup.gpe_device,
304 dev->wakeup.gpe_number, 303 dev->wakeup.gpe_number);
305 ACPI_GPE_TYPE_RUNTIME);
306 acpi_disable_wakeup_device_power(dev); 304 acpi_disable_wakeup_device_power(dev);
307 } 305 }
308 } else { 306 } else {