diff options
author | Bjorn Helgaas <bjorn.helgaas@hp.com> | 2009-03-24 18:50:19 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-03-27 12:51:31 -0400 |
commit | 201b8c655f7a48563f6a0b66f9e388460a1ea611 (patch) | |
tree | 262341b6fd76e17ddce25c9ea87f081104aca6a8 /drivers/acpi/wakeup.c | |
parent | 9cee43e07940bee13462e63bd75ce4430b155886 (diff) |
ACPI: call acpi_wakeup_device_init() explicitly rather than as initcall
This patch makes acpi_init() call acpi_wakeup_device_init() directly.
Previously, acpi_wakeup_device_init() was a late_initcall (sequence 7).
acpi_wakeup_device_init() depends on acpi_wakeup_device_list, which
is populated when ACPI devices are enumerated by acpi_init() ->
acpi_scan_init(). Using late_initcall is certainly enough to make
sure acpi_wakeup_device_list is populated, but it is more than
necessary. We can just as easily call acpi_wakeup_device_init()
directly from acpi_init(), which avoids the initcall magic.
Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
CC: Li Shaohua <shaohua.li@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/wakeup.c')
-rw-r--r-- | drivers/acpi/wakeup.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/acpi/wakeup.c b/drivers/acpi/wakeup.c index 3f29fd53e9a6..5aee8c26cc9f 100644 --- a/drivers/acpi/wakeup.c +++ b/drivers/acpi/wakeup.c | |||
@@ -138,13 +138,10 @@ void acpi_disable_wakeup_device(u8 sleep_state) | |||
138 | spin_unlock(&acpi_device_lock); | 138 | spin_unlock(&acpi_device_lock); |
139 | } | 139 | } |
140 | 140 | ||
141 | static int __init acpi_wakeup_device_init(void) | 141 | int __init acpi_wakeup_device_init(void) |
142 | { | 142 | { |
143 | struct list_head *node, *next; | 143 | struct list_head *node, *next; |
144 | 144 | ||
145 | if (acpi_disabled) | ||
146 | return 0; | ||
147 | |||
148 | spin_lock(&acpi_device_lock); | 145 | spin_lock(&acpi_device_lock); |
149 | list_for_each_safe(node, next, &acpi_wakeup_device_list) { | 146 | list_for_each_safe(node, next, &acpi_wakeup_device_list) { |
150 | struct acpi_device *dev = container_of(node, | 147 | struct acpi_device *dev = container_of(node, |
@@ -165,5 +162,3 @@ static int __init acpi_wakeup_device_init(void) | |||
165 | spin_unlock(&acpi_device_lock); | 162 | spin_unlock(&acpi_device_lock); |
166 | return 0; | 163 | return 0; |
167 | } | 164 | } |
168 | |||
169 | late_initcall(acpi_wakeup_device_init); | ||