diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2008-01-30 13:30:27 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 13:30:27 +0100 |
commit | 081e10b96e971da2eba05ab1ecbf2c051fa119f6 (patch) | |
tree | 99129a80152fc34a16776f83ed5eea32ffe1321e /arch/x86/kernel/time_64.c | |
parent | 1122b134bcd6e77c5a4117952b8cbc55c8d018bc (diff) | |
download | op-kernel-dev-081e10b96e971da2eba05ab1ecbf2c051fa119f6.zip op-kernel-dev-081e10b96e971da2eba05ab1ecbf2c051fa119f6.tar.gz |
x86: clean up arch/x86/kernel/time_64.c includes
Reduce the lets include all to the minimum.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/time_64.c')
-rw-r--r-- | arch/x86/kernel/time_64.c | 30 |
1 files changed, 3 insertions, 27 deletions
diff --git a/arch/x86/kernel/time_64.c b/arch/x86/kernel/time_64.c index 64cd03e..f88bf6b 100644 --- a/arch/x86/kernel/time_64.c +++ b/arch/x86/kernel/time_64.c @@ -11,38 +11,14 @@ * RTC support code taken from arch/i386/kernel/timers/time_hpet.c */ -#include <linux/kernel.h> -#include <linux/sched.h> -#include <linux/interrupt.h> +#include <linux/clockchips.h> #include <linux/init.h> -#include <linux/mc146818rtc.h> -#include <linux/time.h> -#include <linux/ioport.h> +#include <linux/interrupt.h> #include <linux/module.h> -#include <linux/device.h> -#include <linux/sysdev.h> -#include <linux/bcd.h> -#include <linux/notifier.h> -#include <linux/cpu.h> -#include <linux/kallsyms.h> -#include <linux/acpi.h> -#include <linux/clockchips.h> +#include <linux/time.h> -#ifdef CONFIG_ACPI -#include <acpi/achware.h> /* for PM timer frequency */ -#include <acpi/acpi_bus.h> -#endif #include <asm/i8253.h> -#include <asm/pgtable.h> -#include <asm/vsyscall.h> -#include <asm/timex.h> -#include <asm/proto.h> -#include <asm/hpet.h> -#include <asm/sections.h> -#include <linux/hpet.h> -#include <asm/apic.h> #include <asm/hpet.h> -#include <asm/mpspec.h> #include <asm/nmi.h> #include <asm/vgtod.h> |