diff options
author | Borislav Petkov <bp@suse.de> | 2013-03-20 18:07:26 +0400 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2013-04-02 21:12:54 +0400 |
commit | c5b41a67505cc3c9744d8f105c63a3bf3c443a01 (patch) | |
tree | 737b9ed755d6def0eb622e6e4967bb8562ff21a0 /arch/x86/kernel/cpu/proc.c | |
parent | 93a829e8e2c292f1d30155f64803101ca1cb7d3d (diff) | |
download | linux-c5b41a67505cc3c9744d8f105c63a3bf3c443a01.tar.xz |
x86, cpu: Convert Cyrix coma bug detection
... to the new facility.
Signed-off-by: Borislav Petkov <bp@suse.de>
Link: http://lkml.kernel.org/r/1363788448-31325-5-git-send-email-bp@alien8.de
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/kernel/cpu/proc.c')
-rw-r--r-- | arch/x86/kernel/cpu/proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/proc.c b/arch/x86/kernel/cpu/proc.c index 5dfb6c65138f..37a198bd48c8 100644 --- a/arch/x86/kernel/cpu/proc.c +++ b/arch/x86/kernel/cpu/proc.c @@ -36,7 +36,7 @@ static void show_cpuinfo_misc(struct seq_file *m, struct cpuinfo_x86 *c) "wp\t\t: %s\n", static_cpu_has_bug(X86_BUG_FDIV) ? "yes" : "no", static_cpu_has_bug(X86_BUG_F00F) ? "yes" : "no", - c->coma_bug ? "yes" : "no", + static_cpu_has_bug(X86_BUG_COMA) ? "yes" : "no", c->hard_math ? "yes" : "no", c->hard_math ? "yes" : "no", c->cpuid_level, |