diff options
author | Bjorn Helgaas <bjorn.helgaas@hp.com> | 2009-03-24 16:49:48 -0600 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-03-27 12:50:02 -0400 |
commit | a5f820feb54a59fcdaf4a67a6381ea1ddb36cc6e (patch) | |
tree | f8a9546077306e87fd55f470860b4e15f53539c2 /drivers/acpi/internal.h | |
parent | e747f274951507b5a0850155c3d709e26d20de5b (diff) |
ACPI: call acpi_ec_init() explicitly rather than as initcall
This patch makes acpi_init() call acpi_ec_init() directly.
Previously, both were subsys_initcalls. acpi_ec_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>
CC: Alexey Starikovskiy <astarikovskiy@suse.de>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/internal.h')
-rw-r--r-- | drivers/acpi/internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/acpi/internal.h b/drivers/acpi/internal.h index 28042c0f2ff..fad8e38ed27 100644 --- a/drivers/acpi/internal.h +++ b/drivers/acpi/internal.h @@ -17,6 +17,7 @@ extern int acpi_power_nocheck; /* -------------------------------------------------------------------------- Embedded Controller -------------------------------------------------------------------------- */ +int acpi_ec_init(void); int acpi_ec_ecdt_probe(void); int acpi_boot_ec_enable(void); |