From da79f568dc2e06ec06a7a44dec12e9db2ef9f235 Mon Sep 17 00:00:00 2001 From: Paul Gortmaker Date: Thu, 26 May 2011 15:49:02 -0400 Subject: [PATCH] acpi: revector aclinux.h from module.h to export.h This file was only including linux/module.h for the EXPORT_SYMBOL infrastructure, and nothing else. Revector it onto the isolated export header for faster compile times. Doing the above shows that the ACPI hwsleep module was not actually including , so add that in so that it will continue to build successfully. Signed-off-by: Paul Gortmaker --- drivers/acpi/acpica/hwsleep.c | 1 + include/acpi/platform/aclinux.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/acpi/acpica/hwsleep.c b/drivers/acpi/acpica/hwsleep.c index 2ac28bbe8827..d52da3073650 100644 --- a/drivers/acpi/acpica/hwsleep.c +++ b/drivers/acpi/acpica/hwsleep.c @@ -46,6 +46,7 @@ #include "accommon.h" #include "actables.h" #include +#include #define _COMPONENT ACPI_HARDWARE ACPI_MODULE_NAME("hwsleep") diff --git a/include/acpi/platform/aclinux.h b/include/acpi/platform/aclinux.h index f72403c4b51a..827dbc172f66 100644 --- a/include/acpi/platform/aclinux.h +++ b/include/acpi/platform/aclinux.h @@ -55,7 +55,7 @@ #include #include -#include +#include #include #include #include -- 2.39.5