diff options
author | Jean Delvare <khali@linux-fr.org> | 2011-04-24 20:07:55 +0400 |
---|---|---|
committer | Matthew Garrett <mjg@redhat.com> | 2011-05-27 20:36:46 +0400 |
commit | c4bae98c4f913d3220d185c47d8817b5e2bba007 (patch) | |
tree | ac9a9ff17de73522e9e210f9f93939e031cd10ca | |
parent | e569b223d53cb2720f55be72932f5758a056ff6d (diff) | |
download | linux-c4bae98c4f913d3220d185c47d8817b5e2bba007.tar.xz |
acerhdf: Clean up includes
* The acerhdf driver isn't an ACPI driver, so it needs not include
<acpi/acpi_drivers.h>. All it uses is ec_read() and ec_write(), for
which <linux/acpi.h> is sufficient.
* I couldn't find any reason why <linux/fs.h> and <linux/sched.h> were
included.
This should avoid unneeded rebuilds of the acerhdf driver.
Signed-off-by: Jean Delvare <khali@linux-fr.org>
Cc: Peter Feuerer <peter@piie.net>
Cc: Matthew Garrett <mjg@redhat.com>
Signed-off-by: Matthew Garrett <mjg@redhat.com>
-rw-r--r-- | drivers/platform/x86/acerhdf.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/platform/x86/acerhdf.c b/drivers/platform/x86/acerhdf.c index 60f9cfcac93f..fca3489218b7 100644 --- a/drivers/platform/x86/acerhdf.c +++ b/drivers/platform/x86/acerhdf.c @@ -35,10 +35,8 @@ #include <linux/kernel.h> #include <linux/module.h> -#include <linux/fs.h> #include <linux/dmi.h> -#include <acpi/acpi_drivers.h> -#include <linux/sched.h> +#include <linux/acpi.h> #include <linux/thermal.h> #include <linux/platform_device.h> |