Fixes Fam10/SR5650 cpu not recognized message.

Extend the Family10 revisions checked byt the printk message.

Change-Id: Ia94daeefb1aabfb128c577b1e0aa52cf63d5cf44
Signed-off-by: Marc Jones <marcj303@gmail.com>
Reviewed-on: http://review.coreboot.org/633
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
Dave Frodin 2012-02-02 15:08:22 -07:00 committed by Marc Jones
parent e42d639718
commit da52aed20d
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ static void get_cpu_rev(void)
printk(BIOS_INFO, "CPU Rev is K8_G0.\n");
else if (eax <= 0x100000)
printk(BIOS_INFO, "CPU Rev is K8_G1.\n");
else if (eax <= 0x100f00)
else if (eax <= 0x100fa0)
printk(BIOS_INFO, "CPU Rev is Fam 10.\n");
else
printk(BIOS_INFO, "CPU Rev is not recognized.\n");