Commit fd559ba6 authored by Dave Jones's avatar Dave Jones Committed by Dave Jones

[CPUFREQ] Remove bogus scaling from longhaul driver freqency tables.

This is nonsense. We only use the lower 8 bits, so putting the useful
info in the upper 8 makes no sense at all.
parent a782509e
......@@ -268,7 +268,7 @@ static int __init longhaul_get_ranges (void)
if (ratio > maxmult || ratio < minmult)
continue;
longhaul_table[k].frequency = calc_speed (ratio, fsb);
longhaul_table[k].index = (j << 8);
longhaul_table[k].index = j;
k++;
}
......
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