diff options
author | Bjorn Helgaas <bjorn.helgaas@hp.com> | 2009-03-24 16:49:58 -0600 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-03-27 12:50:19 -0400 |
commit | 141a0af3cab7de690816b17aad1682050219f774 (patch) | |
tree | 1b2026b63b879e65a5b347115554064d4df633bb /drivers/acpi/bus.c | |
parent | 44515374cba9e46d5622256b43eb06b9c349cee1 (diff) |
ACPI: call acpi_system_init() explicitly rather than as initcall
This patch makes acpi_init() call acpi_system_init() directly.
Previously, both were subsys_initcalls. acpi_system_init()
must happen after acpi_init(), and it's better to call it
explicitly rather than rely on link ordering.
Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/bus.c')
-rw-r--r-- | drivers/acpi/bus.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/acpi/bus.c b/drivers/acpi/bus.c index 946610f00aa1..c13307279f7e 100644 --- a/drivers/acpi/bus.c +++ b/drivers/acpi/bus.c @@ -882,6 +882,7 @@ static int __init acpi_init(void) acpi_scan_init(); acpi_ec_init(); acpi_power_init(); + acpi_system_init(); return result; } |