diff options
author | Daniel Lezcano <daniel.lezcano@linaro.org> | 2013-02-04 17:44:41 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2013-02-08 18:44:51 -0500 |
commit | e2668fb53ffd3e01c3116f65a9047a25e4c66399 (patch) | |
tree | 6d9f51cdf6dcde0dd078c91e4753a435f8172d8a /drivers/acpi | |
parent | 41cdb0efc42ed3c10f56e0740db28eff086af62b (diff) |
ACPI / idle : remove pointless headers
These different headers are not needed.
Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi')
-rw-r--r-- | drivers/acpi/processor_idle.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/acpi/processor_idle.c b/drivers/acpi/processor_idle.c index 5cb5f247d2be..82626e9abe78 100644 --- a/drivers/acpi/processor_idle.c +++ b/drivers/acpi/processor_idle.c | |||
@@ -28,19 +28,12 @@ | |||
28 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | 28 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
29 | */ | 29 | */ |
30 | 30 | ||
31 | #include <linux/kernel.h> | ||
32 | #include <linux/module.h> | 31 | #include <linux/module.h> |
33 | #include <linux/init.h> | ||
34 | #include <linux/cpufreq.h> | ||
35 | #include <linux/slab.h> | ||
36 | #include <linux/acpi.h> | 32 | #include <linux/acpi.h> |
37 | #include <linux/dmi.h> | 33 | #include <linux/dmi.h> |
38 | #include <linux/moduleparam.h> | 34 | #include <linux/sched.h> /* need_resched() */ |
39 | #include <linux/sched.h> /* need_resched() */ | ||
40 | #include <linux/pm_qos.h> | ||
41 | #include <linux/clockchips.h> | 35 | #include <linux/clockchips.h> |
42 | #include <linux/cpuidle.h> | 36 | #include <linux/cpuidle.h> |
43 | #include <linux/irqflags.h> | ||
44 | 37 | ||
45 | /* | 38 | /* |
46 | * Include the apic definitions for x86 to have the APIC timer related defines | 39 | * Include the apic definitions for x86 to have the APIC timer related defines |
@@ -52,12 +45,8 @@ | |||
52 | #include <asm/apic.h> | 45 | #include <asm/apic.h> |
53 | #endif | 46 | #endif |
54 | 47 | ||
55 | #include <asm/io.h> | ||
56 | #include <asm/uaccess.h> | ||
57 | |||
58 | #include <acpi/acpi_bus.h> | 48 | #include <acpi/acpi_bus.h> |
59 | #include <acpi/processor.h> | 49 | #include <acpi/processor.h> |
60 | #include <asm/processor.h> | ||
61 | 50 | ||
62 | #define PREFIX "ACPI: " | 51 | #define PREFIX "ACPI: " |
63 | 52 | ||