From: Paul Gortmaker Date: Fri, 1 Jul 2011 16:02:02 +0000 (-0400) Subject: acpi: sysfs.c needs module.h and not just moduleparam.h X-Git-Tag: next-20110826~3^2~178 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=71d30ad809a66a83a3a929625ffbccfe53d95881;p=karo-tx-linux.git acpi: sysfs.c needs module.h and not just moduleparam.h If it doesn't get it then this line: MODULE_PARM_DESC(aml_debug_output, "To enable/disable the ACPI Debug Object output."); will trigger: drivers/acpi/sysfs.c:229: error: expected ‘)’ before string constant make[3]: *** [drivers/acpi/sysfs.o] Error 1 Signed-off-by: Paul Gortmaker --- diff --git a/drivers/acpi/sysfs.c b/drivers/acpi/sysfs.c index c538d0ef10ff..577cafe8d234 100644 --- a/drivers/acpi/sysfs.c +++ b/drivers/acpi/sysfs.c @@ -4,7 +4,7 @@ #include #include -#include +#include #include #define _COMPONENT ACPI_SYSTEM_COMPONENT