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-20110801~6^2~295 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=843830475e06d690c4698fe4de46cbffb4442063;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 77255f250dbb..bcec68d0b13f 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