Commit 078f4ae3 authored by Dave Jones's avatar Dave Jones

[CPUFREQ] powernow-k7.c: Fix incorrect multiplier.

This should fix the x1.0 multiplier bug (should be x10.0)
Spotted by Dominik Brodowski
parent e7302a10
......@@ -67,7 +67,7 @@ static int mobile_vid_table[32] = {
/* divide by 10 to get FID. */
static int fid_codes[32] = {
110, 115, 120, 125, 50, 55, 60, 65,
70, 75, 80, 85, 90, 95, 10, 105,
70, 75, 80, 85, 90, 95, 100, 105,
30, 190, 40, 200, 130, 135, 140, 210,
150, 225, 160, 165, 170, 180, -1, -1,
};
......
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