Skip to content

Commit

Permalink
x86: cpuid, fix typo
Browse files Browse the repository at this point in the history
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Ingo Molnar committed Sep 14, 2008
1 parent afae865 commit a9853dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/x86/kernel/cpu/common.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit a9853dd

Please sign in to comment.