Commit 8a9a9b4e authored by Dave Jones's avatar Dave Jones Committed by Dave Jones

[CPUFREQ] powernow-k7 ACPI->PST values were a factor of 10 off.

As much as I like the idea of a 13GHz laptop, setting it to 1.3GHz is probably
for the best for the time being.
parent 449d887b
......@@ -365,7 +365,7 @@ static int powernow_acpi_init(void)
vid = pc.bits.vid;
fid = pc.bits.fid;
powernow_table[i].frequency = (fsb * fid_codes[fid]);
powernow_table[i].frequency = fsb * fid_codes[fid] / 10;
powernow_table[i].index = fid; /* lower 8 bits */
powernow_table[i].index |= (vid << 8); /* upper 8 bits */
......
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