aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/numaq_32.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel/numaq_32.c')
-rw-r--r--arch/x86/kernel/numaq_32.c7
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
87static int __init numaq_pre_time_init(void)
88{
89 numaq_tsc_disable();
90 return 0;
91}
92
87int found_numaq; 93int 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
226static struct x86_quirks numaq_x86_quirks __initdata = { 232static 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,