[coreboot] [commit] r4953 - trunk/util/msrtool

svn at coreboot.org svn at coreboot.org
Wed Nov 25 03:25:37 CET 2009


Author: stuge
Date: 2009-11-25 03:25:37 +0100 (Wed, 25 Nov 2009)
New Revision: 4953

Modified:
   trunk/util/msrtool/geodelx.c
Log:
msrtool: Fix Geode LX probe function, Family/Model were swapped

Signed-off-by: Peter Stuge <peter at stuge.se>
Acked-by: Peter Stuge <peter at stuge.se>


Modified: trunk/util/msrtool/geodelx.c
===================================================================
--- trunk/util/msrtool/geodelx.c	2009-11-21 19:54:02 UTC (rev 4952)
+++ trunk/util/msrtool/geodelx.c	2009-11-25 02:25:37 UTC (rev 4953)
@@ -21,7 +21,7 @@
 
 int geodelx_probe(const struct targetdef *target) {
 	struct cpuid_t *id = cpuid();
-	return 10 == id->family && 5 == id->model;
+	return 5 == id->family && 10 == id->model;
 }
 
 const struct msrdef geodelx_msrs[] = {





More information about the coreboot mailing list