diff options
author | Ingo Molnar <mingo@elte.hu> | 2008-09-14 14:46:58 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-09-14 14:46:58 +0200 |
commit | a9853dd6d285c30a3ddeb3cce8c05e1678400bef (patch) | |
tree | 4e7acb22d1829aeddf7847b418309a0758502a73 /arch | |
parent | afae865613c8292e8bdcce4f0b161988d761f033 (diff) | |
download | linux-a9853dd6d285c30a3ddeb3cce8c05e1678400bef.tar.gz linux-a9853dd6d285c30a3ddeb3cce8c05e1678400bef.tar.bz2 linux-a9853dd6d285c30a3ddeb3cce8c05e1678400bef.zip |
x86: cpuid, fix typo
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/cpu/common.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c index 3e2ce4d33d3a..cef3519b3bbb 100644 --- a/arch/x86/kernel/cpu/common.c +++ b/arch/x86/kernel/cpu/common.c @@ -529,7 +529,7 @@ static void __init early_identify_cpu(struct cpuinfo_x86 *c) identify_cpu_without_cpuid(c); /* cyrix could have cpuid enabled via c_identify()*/ - if (!have_cpuid()) + if (!have_cpuid_p()) return; cpu_detect(c); @@ -611,7 +611,7 @@ static void __cpuinit generic_identify(struct cpuinfo_x86 *c) identify_cpu_without_cpuid(c); /* cyrix could have cpuid enabled via c_identify()*/ - if (!have_cpuid()) + if (!have_cpuid_p()) return; cpu_detect(c); |