aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZhang Rui <rui.zhang@intel.com>2014-10-23 20:20:00 +0800
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2014-10-23 22:03:19 +0200
commit67598a1d3140a66f57aa6bcb8d22c4c2b7e910f5 (patch)
tree43e1aff80c08aed331d88445262e2ebe22a71b1c
parentACPI / sleep: Rework the handling of ACPI GPE wakeup from suspend-to-idle (diff)
downloadlinux-dev-67598a1d3140a66f57aa6bcb8d22c4c2b7e910f5.tar.xz
linux-dev-67598a1d3140a66f57aa6bcb8d22c4c2b7e910f5.zip
ACPI: invoke acpi_device_wakeup() with correct parameters
Fix a bug that invokes acpi_device_wakeup() with wrong parameters. Fixes: f35cec255557 (ACPI / PM: Always enable wakeup GPEs when enabling device wakeup) Signed-off-by: Zhang Rui <rui.zhang@intel.com> Cc: 3.17+ <stable@vger.kernel.org> # 3.17+ Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
-rw-r--r--drivers/acpi/device_pm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/device_pm.c b/drivers/acpi/device_pm.c
index 67075f800e34..5e9cbd664286 100644
--- a/drivers/acpi/device_pm.c
+++ b/drivers/acpi/device_pm.c
@@ -710,7 +710,7 @@ int acpi_pm_device_run_wake(struct device *phys_dev, bool enable)
return -ENODEV;
}
- return acpi_device_wakeup(adev, enable, ACPI_STATE_S0);
+ return acpi_device_wakeup(adev, ACPI_STATE_S0, enable);
}
EXPORT_SYMBOL(acpi_pm_device_run_wake);
#endif /* CONFIG_PM_RUNTIME */