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
diff --git a/util/inteltool/cpu.c b/util/inteltool/cpu.c
index ee49d96..aa3505f 100644
--- a/util/inteltool/cpu.c
+++ b/util/inteltool/cpu.c
@@ -464,7 +464,7 @@
 	/* 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];