]> git.karo-electronics.de Git - linux-beck.git/commitdiff
intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
authorBen Hutchings <ben@decadent.org.uk>
Sat, 11 Feb 2012 22:57:38 +0000 (22:57 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 13 Feb 2012 23:24:27 +0000 (15:24 -0800)
Commit b66b8b9a4a79087dde1b358a016e5c8739ccf186 ('intel-idle: convert
to x86_cpu_id auto probing') put two entries for model 0x2f
(Westmere-EX Xeon) in the device ID table and left out model 0x2e
(Nehalem-EX Xeon).

Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Acked-by: Thomas Renninger <trenn@suse.de>
Acked-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/idle/intel_idle.c

index 237fe5785f0100f86e6a0e5a0ceffd617d61ab40..a238649e7461758eed863219f871e5970330c421 100644 (file)
@@ -360,7 +360,7 @@ static const struct x86_cpu_id intel_idle_ids[] = {
        ICPU(0x1f, idle_cpu_nehalem),
        ICPU(0x25, idle_cpu_westmere),
        ICPU(0x2c, idle_cpu_westmere),
-       ICPU(0x2f, idle_cpu_westmere),
+       ICPU(0x2e, idle_cpu_westmere),
        ICPU(0x1c, idle_cpu_atom),
        ICPU(0x26, idle_cpu_lincroft),
        ICPU(0x2f, idle_cpu_westmere),