diff options
author | Dave Frodin <dave.frodin@se-eng.com> | 2012-02-02 15:08:22 -0700 |
---|---|---|
committer | Marc Jones <marcj303@gmail.com> | 2012-02-20 05:36:10 +0100 |
commit | da52aed20d2ee835c6c68f779b2ec1949895af87 (patch) | |
tree | 3465095025164b76930ed9a5e1421b3b49b2b007 /src/southbridge/amd/sr5650 | |
parent | e42d639718cacbca75397bf5a560584ee32ede69 (diff) | |
download | coreboot-da52aed20d2ee835c6c68f779b2ec1949895af87.tar.xz |
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>
Diffstat (limited to 'src/southbridge/amd/sr5650')
-rw-r--r-- | src/southbridge/amd/sr5650/early_setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/amd/sr5650/early_setup.c b/src/southbridge/amd/sr5650/early_setup.c index 50f836e77c..32bdd7f28a 100644 --- a/src/southbridge/amd/sr5650/early_setup.c +++ b/src/southbridge/amd/sr5650/early_setup.c @@ -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"); |