The .add function must not be declared __init. Signed-off-by: Thomas Renninger <trenn@xxxxxxx> CC: Alexey Starikovskiy <astarikovskiy@xxxxxxx> CC: Len Brown <lenb@xxxxxxxxxx> CC: linux-kernel@xxxxxxxxxxxxxxx CC: linux-acpi@xxxxxxxxxxxxxxx CC: platform-driver-x86@xxxxxxxxxxxxxxx Index: linux-2.6.34-master/drivers/platform/x86/wmi.c =================================================================== --- drivers/platform/x86/wmi.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/platform/x86/wmi.c b/drivers/platform/x86/wmi.c index e4eaa14..635ebb4 100644 --- a/drivers/platform/x86/wmi.c +++ b/drivers/platform/x86/wmi.c @@ -804,7 +804,7 @@ static bool guid_already_parsed(const char *guid_string) /* * Parse the _WDG method for the GUID data blocks */ -static __init acpi_status parse_wdg(acpi_handle handle) +static acpi_status parse_wdg(acpi_handle handle) { struct acpi_buffer out = {ACPI_ALLOCATE_BUFFER, NULL}; union acpi_object *obj; @@ -947,7 +947,7 @@ static int acpi_wmi_remove(struct acpi_device *device, int type) return 0; } -static int __init acpi_wmi_add(struct acpi_device *device) +static int acpi_wmi_add(struct acpi_device *device) { acpi_status status; int result = 0; -- 1.6.3 -- To unsubscribe from this list: send the line "unsubscribe linux-acpi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html