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 <[email protected]> Acked-by: Peter Stuge <[email protected]> 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[] = { -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

