Commit 6d94125c authored by Dave Jones's avatar Dave Jones

[CPUFREQ] Fix an off-by-10 value in the detection of the Pentium M processor frequency.

parent d9fa7b95
......@@ -127,7 +127,7 @@ static unsigned int pentiumM_get_frequency(void)
msr_tmp = (msr_lo >> 22) & 0x1f;
dprintk(KERN_DEBUG "speedstep-lib: bits 22-26 are 0x%x\n", msr_tmp);
return (msr_tmp * 100 * 10000);
return (msr_tmp * 100 * 1000);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment