aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorBjorn Helgaas <bjorn.helgaas@hp.com>2009-03-24 18:49:58 -0400
committerLen Brown <len.brown@intel.com>2009-03-27 12:50:19 -0400
commit141a0af3cab7de690816b17aad1682050219f774 (patch)
tree1b2026b63b879e65a5b347115554064d4df633bb /drivers
parent44515374cba9e46d5622256b43eb06b9c349cee1 (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')
-rw-r--r--drivers/acpi/bus.c1
-rw-r--r--drivers/acpi/internal.h1
-rw-r--r--drivers/acpi/system.c9
3 files changed, 4 insertions, 7 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)
882 acpi_scan_init(); 882 acpi_scan_init();
883 acpi_ec_init(); 883 acpi_ec_init();
884 acpi_power_init(); 884 acpi_power_init();
885 acpi_system_init();
885 return result; 886 return result;
886} 887}
887 888
diff --git a/drivers/acpi/internal.h b/drivers/acpi/internal.h
index a8178add7fd1..4a35f6e819d3 100644
--- a/drivers/acpi/internal.h
+++ b/drivers/acpi/internal.h
@@ -1,6 +1,7 @@
1/* For use by Linux/ACPI infrastructure, not drivers */ 1/* For use by Linux/ACPI infrastructure, not drivers */
2 2
3int acpi_scan_init(void); 3int acpi_scan_init(void);
4int acpi_system_init(void);
4 5
5/* -------------------------------------------------------------------------- 6/* --------------------------------------------------------------------------
6 Power Resource 7 Power Resource
diff --git a/drivers/acpi/system.c b/drivers/acpi/system.c
index 391d0358a592..3b88981dd215 100644
--- a/drivers/acpi/system.c
+++ b/drivers/acpi/system.c
@@ -571,12 +571,9 @@ static int acpi_system_procfs_init(void)
571} 571}
572#endif 572#endif
573 573
574static int __init acpi_system_init(void) 574int __init acpi_system_init(void)
575{ 575{
576 int result = 0; 576 int result;
577
578 if (acpi_disabled)
579 return 0;
580 577
581 result = acpi_system_procfs_init(); 578 result = acpi_system_procfs_init();
582 if (result) 579 if (result)
@@ -586,5 +583,3 @@ static int __init acpi_system_init(void)
586 583
587 return result; 584 return result;
588} 585}
589
590subsys_initcall(acpi_system_init);