diff options
author | Zhang Rui <rui.zhang@intel.com> | 2010-12-07 21:40:36 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2010-12-11 02:01:47 -0500 |
commit | 32d47eeff05981bfb89a95747eb182bc12630d58 (patch) | |
tree | 5f396a51cb3fa829ad0ca021339cbd253fa18bb8 /drivers/acpi | |
parent | 3b38bb5f7f06356a89bb2cbf92ad346025e95192 (diff) |
ACPI: fix a section mismatch
WARNING: drivers/acpi/acpi.o(.text+0xeda): Section mismatch in reference from the function acpi_os_initialize1() to the function .init.text:set_osi_linux()
The function acpi_os_initialize1() references
the function __init set_osi_linux().
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/osl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c index 966feddf6b1b..f7227e990b0f 100644 --- a/drivers/acpi/osl.c +++ b/drivers/acpi/osl.c | |||
@@ -1530,7 +1530,7 @@ acpi_status __init acpi_os_initialize(void) | |||
1530 | return AE_OK; | 1530 | return AE_OK; |
1531 | } | 1531 | } |
1532 | 1532 | ||
1533 | acpi_status acpi_os_initialize1(void) | 1533 | acpi_status __init acpi_os_initialize1(void) |
1534 | { | 1534 | { |
1535 | kacpid_wq = create_workqueue("kacpid"); | 1535 | kacpid_wq = create_workqueue("kacpid"); |
1536 | kacpi_notify_wq = create_workqueue("kacpi_notify"); | 1536 | kacpi_notify_wq = create_workqueue("kacpi_notify"); |