msrtool: Fix Geode LX probe function, Family/Model were swapped
Signed-off-by: Peter Stuge <peter@stuge.se> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4953 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
26774f2b72
commit
46c920e13a
|
@ -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[] = {
|
||||
|
|
Loading…
Reference in New Issue