aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/idle
diff options
context:
space:
mode:
authorBen Hutchings <ben@decadent.org.uk>2012-02-11 17:57:38 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-02-13 18:24:27 -0500
commite668505c9811411c6096888b43ba104f35c9e9c3 (patch)
tree0d0eff2ce645fe27a77c0cbb20a0107e68d70629 /drivers/idle
parent5467bdda4a326513c2f14b712a22d59115b7ae94 (diff)
intel_idle: Fix ID for Nehalem-EX Xeon in device ID table
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>
Diffstat (limited to 'drivers/idle')
-rw-r--r--drivers/idle/intel_idle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/idle/intel_idle.c b/drivers/idle/intel_idle.c
index 237fe5785f01..a238649e7461 100644
--- a/drivers/idle/intel_idle.c
+++ b/drivers/idle/intel_idle.c
@@ -360,7 +360,7 @@ static const struct x86_cpu_id intel_idle_ids[] = {
360 ICPU(0x1f, idle_cpu_nehalem), 360 ICPU(0x1f, idle_cpu_nehalem),
361 ICPU(0x25, idle_cpu_westmere), 361 ICPU(0x25, idle_cpu_westmere),
362 ICPU(0x2c, idle_cpu_westmere), 362 ICPU(0x2c, idle_cpu_westmere),
363 ICPU(0x2f, idle_cpu_westmere), 363 ICPU(0x2e, idle_cpu_westmere),
364 ICPU(0x1c, idle_cpu_atom), 364 ICPU(0x1c, idle_cpu_atom),
365 ICPU(0x26, idle_cpu_lincroft), 365 ICPU(0x26, idle_cpu_lincroft),
366 ICPU(0x2f, idle_cpu_westmere), 366 ICPU(0x2f, idle_cpu_westmere),