aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorDave Jones <davej@redhat.com>2005-01-14 06:05:45 -0500
committerDave Jones <davej@redhat.com>2005-01-14 06:05:45 -0500
commiteba294f7aa7cfe6fc7f95d4679dd22771d45487e (patch)
tree6386f989c1ef29fe752c5f34980e6ddff156b3d5 /arch
parent441f331ce15b9b43fe3166ffa8b9819d44a75dd9 (diff)
downloadhistory-eba294f7aa7cfe6fc7f95d4679dd22771d45487e.tar.gz
[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 <linux@brodo.de> Signed-off-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/i386/kernel/cpu/cpufreq/p4-clockmod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/kernel/cpu/cpufreq/p4-clockmod.c b/arch/i386/kernel/cpu/cpufreq/p4-clockmod.c
index 18596a15b115a7..aa622d52c6e538 100644
--- a/arch/i386/kernel/cpu/cpufreq/p4-clockmod.c
+++ b/arch/i386/kernel/cpu/cpufreq/p4-clockmod.c
@@ -171,7 +171,7 @@ static unsigned int cpufreq_p4_get_frequency(struct cpuinfo_x86 *c)
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"