diff options
Diffstat (limited to 'arch/x86/kernel/numaq_32.c')
-rw-r--r-- | arch/x86/kernel/numaq_32.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/x86/kernel/numaq_32.c b/arch/x86/kernel/numaq_32.c index 7f4e00d1d893..b8c45610b20a 100644 --- a/arch/x86/kernel/numaq_32.c +++ b/arch/x86/kernel/numaq_32.c | |||
@@ -84,6 +84,12 @@ void __init numaq_tsc_disable(void) | |||
84 | } | 84 | } |
85 | } | 85 | } |
86 | 86 | ||
87 | static int __init numaq_pre_time_init(void) | ||
88 | { | ||
89 | numaq_tsc_disable(); | ||
90 | return 0; | ||
91 | } | ||
92 | |||
87 | int found_numaq; | 93 | int found_numaq; |
88 | /* | 94 | /* |
89 | * Have to match translation table entries to main table entries by counter | 95 | * Have to match translation table entries to main table entries by counter |
@@ -224,6 +230,7 @@ static void __init smp_read_mpc_oem(struct mp_config_oemtable *oemtable, | |||
224 | } | 230 | } |
225 | 231 | ||
226 | static struct x86_quirks numaq_x86_quirks __initdata = { | 232 | static struct x86_quirks numaq_x86_quirks __initdata = { |
233 | .arch_pre_time_init = numaq_pre_time_init, | ||
227 | .arch_time_init = NULL, | 234 | .arch_time_init = NULL, |
228 | .arch_pre_intr_init = NULL, | 235 | .arch_pre_intr_init = NULL, |
229 | .arch_memory_setup = NULL, | 236 | .arch_memory_setup = NULL, |