aboutsummaryrefslogtreecommitdiff
path: root/util/inteltool/cpu.c
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2010-06-01 10:04:28 +0000
committerStefan Reinauer <stepan@openbios.org>2010-06-01 10:04:28 +0000
commit74cd569821f2bc4148e1fb6281c587323d14811e (patch)
tree36b6009833fa5735b4c84bbea0f98aea3710dbae /util/inteltool/cpu.c
parentb987f7bb3f69eabfb5eb515041bbcabb36d1ccf8 (diff)
inteltool: basic poulsbo sch support.
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5601 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/inteltool/cpu.c')
-rw-r--r--util/inteltool/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/inteltool/cpu.c b/util/inteltool/cpu.c
index ee49d96b0e..aa3505f6ee 100644
--- a/util/inteltool/cpu.c
+++ b/util/inteltool/cpu.c
@@ -464,7 +464,7 @@ int print_intel_core_msrs(void)
/* Get CPU family and model, not the stepping
* (TODO: extended family/model)
*/
- id = cpuid(1) & 0xff0;
+ id = cpuid(1) & 0xfffff0;
for (i = 0; i < ARRAY_SIZE(cpulist); i++) {
if(cpulist[i].model == id) {
cpu = &cpulist[i];