Commit 00a00ba7 authored by Alexander Atanasov's avatar Alexander Atanasov Committed by Linus Torvalds

[PATCH] missing break in amd 486 cpu case

	An old AMD 486DX4-SE(as reported by bios) here crashes on boot in
amd_init, doing rdmsr in k6 case. Elan fixes added case 4 there but
without break. This break allows it to boot.
parent 3144cc2a
......@@ -56,7 +56,7 @@ static void __init init_amd(struct cpuinfo_x86 *c)
if (inl (CBAR) & CBAR_ENB)
outl (0 | CBAR_KEY, CBAR);
}
break;
case 5:
if( c->x86_model < 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