aboutsummaryrefslogtreecommitdiffstats
path: root/include/acpi
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2008-07-08 15:00:54 +0100
committerJesse Barnes <jbarnes@virtuousgeek.org>2008-07-08 10:39:12 -0700
commitf7a1b86095bf7fd1578ef54067545b9cb7084713 (patch)
treed3f58a912333ddc3966484ae1260ad2dd941cadd /include/acpi
parentPCI: Simplify PCI device PM code (diff)
downloadlinux-dev-f7a1b86095bf7fd1578ef54067545b9cb7084713.tar.xz
linux-dev-f7a1b86095bf7fd1578ef54067545b9cb7084713.zip
Fix acpi_pm_device_sleep_wake() by providing a stub for CONFIG_PM_SLEEP=n
So that one of the several config option permutations will build again. Tested-by: Alexander Beregalov <a.beregalov@gmail.com> Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'include/acpi')
-rw-r--r--include/acpi/acpi_bus.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/acpi/acpi_bus.h b/include/acpi/acpi_bus.h
index 7ab5a611e43f..a5ac0bc7f52e 100644
--- a/include/acpi/acpi_bus.h
+++ b/include/acpi/acpi_bus.h
@@ -388,6 +388,10 @@ static inline int acpi_pm_device_sleep_state(struct device *d, int *p)
*p = ACPI_STATE_D0;
return ACPI_STATE_D3;
}
+static inline int acpi_pm_device_sleep_wake(struct device *dev, bool enable)
+{
+ return -ENODEV;
+}
#endif /* !CONFIG_PM_SLEEP */
#endif /* CONFIG_ACPI */