diff options
Diffstat (limited to 'arch/x86/kernel/x86_init.c')
-rw-r--r-- | arch/x86/kernel/x86_init.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/kernel/x86_init.c b/arch/x86/kernel/x86_init.c index e666a98db7c..4790b92714a 100644 --- a/arch/x86/kernel/x86_init.c +++ b/arch/x86/kernel/x86_init.c | |||
@@ -11,6 +11,7 @@ | |||
11 | #include <asm/setup.h> | 11 | #include <asm/setup.h> |
12 | #include <asm/apic.h> | 12 | #include <asm/apic.h> |
13 | #include <asm/e820.h> | 13 | #include <asm/e820.h> |
14 | #include <asm/time.h> | ||
14 | #include <asm/irq.h> | 15 | #include <asm/irq.h> |
15 | 16 | ||
16 | void __cpuinit x86_init_noop(void) { } | 17 | void __cpuinit x86_init_noop(void) { } |
@@ -58,6 +59,8 @@ struct __initdata x86_init_ops x86_init = { | |||
58 | 59 | ||
59 | .timers = { | 60 | .timers = { |
60 | .setup_percpu_clockev = setup_boot_APIC_clock, | 61 | .setup_percpu_clockev = setup_boot_APIC_clock, |
62 | .tsc_pre_init = x86_init_noop, | ||
63 | .timer_init = hpet_time_init, | ||
61 | }, | 64 | }, |
62 | }; | 65 | }; |
63 | 66 | ||