Index: linux-2.6.24-rc7/drivers/hwmon/coretemp.c =================================================================== --- linux-2.6.24-rc7.orig/drivers/hwmon/coretemp.c 2008-01-18 00:32:26.147387823 +0100 +++ linux-2.6.24-rc7/drivers/hwmon/coretemp.c 2008-01-18 00:33:49.220121868 +0100 @@ -414,10 +414,10 @@ for_each_online_cpu(i) { struct cpuinfo_x86 *c = &cpu_data(i); - /* check if family 6, models e, f, 16 */ + /* check if family 6, models 0xe, 0xf, 0x16, 0x17 */ if ((c->cpuid_level < 0) || (c->x86 != 0x6) || !((c->x86_model == 0xe) || (c->x86_model == 0xf) || - (c->x86_model == 0x16))) { + (c->x86_model == 0x16) || (c->x86_model == 0x17))) { /* supported CPU not found, but report the unknown family 6 CPU */ Index: linux-2.6.24-rc7/Documentation/hwmon/coretemp =================================================================== --- linux-2.6.24-rc7.orig/Documentation/hwmon/coretemp 2008-01-18 00:34:00.776780445 +0100 +++ linux-2.6.24-rc7/Documentation/hwmon/coretemp 2008-01-18 00:35:39.646414704 +0100 @@ -4,9 +4,10 @@ Supported chips: * All Intel Core family Prefix: 'coretemp' - CPUID: family 0x6, models 0xe, 0xf, 0x16 + CPUID: family 0x6, models 0xe, 0xf, 0x16, 0x17 Datasheet: Intel 64 and IA-32 Architectures Software Developer's Manual Volume 3A: System Programming Guide + http://softwarecommunity.intel.com/Wiki/Mobility/720.htm Author: Rudolf Marek