Commit 865be7a8 authored by Ondrej Zary's avatar Ondrej Zary Committed by H. Peter Anvin

x86, cpu: Fix detection of Celeron Covington stepping A1 and B0

Steppings A1 and B0 of Celeron Covington are currently misdetected as
Pentium II (Dixon). Fix it by removing the stepping check.

[ hpa: this fixes this specific bug... the CPUID documentation
  specifies that the L2 cache size can disambiguate additional CPUs;
  this patch does not fix that. ]
Signed-off-by: default avatarOndrej Zary <linux@rainbow-software.org>
Link: http://lkml.kernel.org/r/201105162138.15416.linux@rainbow-software.orgSigned-off-by: default avatarH. Peter Anvin <hpa@linux.intel.com>
parent eecaaba5
...@@ -400,12 +400,10 @@ static void __cpuinit init_intel(struct cpuinfo_x86 *c) ...@@ -400,12 +400,10 @@ static void __cpuinit init_intel(struct cpuinfo_x86 *c)
switch (c->x86_model) { switch (c->x86_model) {
case 5: case 5:
if (c->x86_mask == 0) {
if (l2 == 0) if (l2 == 0)
p = "Celeron (Covington)"; p = "Celeron (Covington)";
else if (l2 == 256) else if (l2 == 256)
p = "Mobile Pentium II (Dixon)"; p = "Mobile Pentium II (Dixon)";
}
break; break;
case 6: case 6:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment