From 46c920e13ac83513897bed1bc27529ff2cdbb436 Mon Sep 17 00:00:00 2001 From: Peter Stuge Date: Wed, 25 Nov 2009 02:25:37 +0000 Subject: msrtool: Fix Geode LX probe function, Family/Model were swapped Signed-off-by: Peter Stuge Acked-by: Peter Stuge git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4953 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- util/msrtool/geodelx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util/msrtool/geodelx.c') diff --git a/util/msrtool/geodelx.c b/util/msrtool/geodelx.c index 65317a2698..8cf7ec0048 100644 --- a/util/msrtool/geodelx.c +++ b/util/msrtool/geodelx.c @@ -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[] = { -- cgit v1.2.3