diff options
Diffstat (limited to 'arch/x86/kernel/cpu/proc.c')
| -rw-r--r-- | arch/x86/kernel/cpu/proc.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/x86/kernel/cpu/proc.c b/arch/x86/kernel/cpu/proc.c index e280253f6f9..37a198bd48c 100644 --- a/arch/x86/kernel/cpu/proc.c +++ b/arch/x86/kernel/cpu/proc.c @@ -34,9 +34,9 @@ static void show_cpuinfo_misc(struct seq_file *m, struct cpuinfo_x86 *c)  		   "fpu_exception\t: %s\n"  		   "cpuid level\t: %d\n"  		   "wp\t\t: %s\n", -		   c->fdiv_bug ? "yes" : "no", -		   c->f00f_bug ? "yes" : "no", -		   c->coma_bug ? "yes" : "no", +		   static_cpu_has_bug(X86_BUG_FDIV) ? "yes" : "no", +		   static_cpu_has_bug(X86_BUG_F00F) ? "yes" : "no", +		   static_cpu_has_bug(X86_BUG_COMA) ? "yes" : "no",  		   c->hard_math ? "yes" : "no",  		   c->hard_math ? "yes" : "no",  		   c->cpuid_level,  |