aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAlexey Starikovskiy <[email protected]>2007-02-10 01:32:16 -0500
committerLen Brown <[email protected]>2007-02-10 01:32:16 -0500
commitaafbcd165a2a02e6dff173f66772b3148229ace8 (patch)
tree57b808dad805d7708721e3c0ebddb718a14a3328 /include
parented41dab90eb40ac4911e60406bc653661f0e4ce1 (diff)
ACPI: invoke acpi_sleep_init() earlier
late_initcall() is too late for acpi_sleep_init(). Call it directly from acpi_init code. http://bugzilla.kernel.org/show_bug.cgi?id=7887 Signed-off-by: Alexey Starikovskiy <[email protected]> Signed-off-by: Vladimir Lebedev <[email protected]> Signed-off-by: Len Brown <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/acpi/acpi_drivers.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/acpi/acpi_drivers.h b/include/acpi/acpi_drivers.h
index 4dc8a5043ef0..ce0e62fb28c1 100644
--- a/include/acpi/acpi_drivers.h
+++ b/include/acpi/acpi_drivers.h
@@ -128,4 +128,14 @@ extern void unregister_hotplug_dock_device(acpi_handle handle);
#define register_hotplug_dock_device(h1, h2, c) (-ENODEV)
#define unregister_hotplug_dock_device(h) do { } while(0)
#endif
+
+/*--------------------------------------------------------------------------
+ Suspend/Resume
+ -------------------------------------------------------------------------- */
+#ifdef CONFIG_ACPI_SLEEP
+extern int acpi_sleep_init(void);
+#else
+#define acpi_sleep_init() do {} while (0)
+#endif
+
#endif /*__ACPI_DRIVERS_H__*/