From 843830475e06d690c4698fe4de46cbffb4442063 Mon Sep 17 00:00:00 2001 From: Paul Gortmaker Date: Fri, 1 Jul 2011 12:02:02 -0400 Subject: [PATCH] acpi: sysfs.c needs module.h and not just moduleparam.h MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- drivers/acpi/sysfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.5