[CPUFREQ] p4-clockmod: Dothan is 13 not 0x13 Dothan is stepping 13 == 0x0D instead of 0x13 == 19 This bug crept bag in the shadows caused by the debug overhauling patch. Signed-off-by: Dominik Brodowski --- arch/i386/kernel/cpu/cpufreq/p4-clockmod.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) Index: 2.6.10/arch/i386/kernel/cpu/cpufreq/p4-clockmod.c =================================================================== --- 2.6.10.orig/arch/i386/kernel/cpu/cpufreq/p4-clockmod.c 2004-12-25 09:59:47.000000000 +0100 +++ 2.6.10/arch/i386/kernel/cpu/cpufreq/p4-clockmod.c 2004-12-25 17:42:48.150743491 +0100 @@ -171,7 +171,7 @@ return speedstep_get_processor_frequency(SPEEDSTEP_PROCESSOR_PM); } - if ((c->x86 == 0x06) && (c->x86_model == 0x13)) { + if ((c->x86 == 0x06) && (c->x86_model == 0x0D)) { /* Pentium M (Dothan) */ printk(KERN_WARNING PFX "Warning: Pentium M detected. " "The speedstep_centrino module offers voltage scaling"