diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-08-20 15:35:23 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2009-08-31 09:35:46 +0200 |
commit | dd3e6e8c6e7a2294f137c4dbccb3e73e7fa8ba15 (patch) | |
tree | 0ea996a1f430527463bf58d9f8732b69fc8e8272 /arch/x86/kernel/time_64.c | |
parent | ecce85089e6d31eed7535b68f5acdd194265690c (diff) | |
download | op-kernel-dev-dd3e6e8c6e7a2294f137c4dbccb3e73e7fa8ba15.zip op-kernel-dev-dd3e6e8c6e7a2294f137c4dbccb3e73e7fa8ba15.tar.gz |
x86: Prepare unification of time_32/64.c
Unify the top comment and the includes.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/time_64.c')
-rw-r--r-- | arch/x86/kernel/time_64.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/arch/x86/kernel/time_64.c b/arch/x86/kernel/time_64.c index 38a7df9..45914f8 100644 --- a/arch/x86/kernel/time_64.c +++ b/arch/x86/kernel/time_64.c @@ -1,6 +1,4 @@ /* - * "High Precision Event Timer" based timekeeping. - * * Copyright (c) 1991,1992,1995 Linus Torvalds * Copyright (c) 1994 Alan Modra * Copyright (c) 1995 Markus Kuhn @@ -8,23 +6,22 @@ * Copyright (c) 1998 Andrea Arcangeli * Copyright (c) 2002,2006 Vojtech Pavlik * Copyright (c) 2003 Andi Kleen - * RTC support code taken from arch/i386/kernel/timers/time_hpet.c + * */ #include <linux/clockchips.h> -#include <linux/init.h> #include <linux/interrupt.h> -#include <linux/module.h> #include <linux/time.h> #include <linux/mca.h> -#include <linux/nmi.h> +#include <asm/vsyscall.h> #include <asm/x86_init.h> +#include <asm/i8259.h> #include <asm/i8253.h> +#include <asm/timer.h> #include <asm/hpet.h> -#include <asm/vgtod.h> #include <asm/time.h> -#include <asm/timer.h> +#include <asm/nmi.h> volatile unsigned long __jiffies __section_jiffies = INITIAL_JIFFIES; |