ACPI / dock: Fix __init attribute location in find_dock_and_bay()
authorHanjun Guo <hanjun.guo@linaro.org>
Tue, 13 Aug 2013 10:31:13 +0000 (18:31 +0800)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 13 Aug 2013 10:34:33 +0000 (12:34 +0200)
__init belongs after the return type on functions, not before it.

Signed-off-by: Hanjun Guo <hanjun.guo@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
drivers/acpi/dock.c

index 8265607..c90112c 100644 (file)
@@ -1055,7 +1055,7 @@ err_unregister:
  *
  * This is called by acpi_walk_namespace to look for dock stations and bays.
  */
-static __init acpi_status
+static acpi_status __init
 find_dock_and_bay(acpi_handle handle, u32 lvl, void *context, void **rv)
 {
        if (is_dock(handle) || is_ejectable_bay(handle))