]> git.hungrycats.org Git - linux/commitdiff
[CPUFREQ] powernow-k7.c: Fix incorrect multiplier.
authorDave Jones <davej@codemonkey.org.uk>
Thu, 13 Feb 2003 19:33:45 +0000 (18:33 -0100)
committerDave Jones <davej@codemonkey.org.uk>
Thu, 13 Feb 2003 19:33:45 +0000 (18:33 -0100)
This should fix the x1.0 multiplier bug (should be x10.0)
Spotted by Dominik Brodowski

arch/i386/kernel/cpu/cpufreq/powernow-k7.c

index 2fe375550399edcd406488654369aa1559998418..c98a41cc64ba15f582b8d7fccc11a09017847d74 100644 (file)
@@ -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,
 };