Commit 513fd5b6 authored by Dave Jones's avatar Dave Jones Committed by Dave Jones

[CPUFREQ] Support VIA C3 Nehemiah's with 200MHz FSB.

Signed-off-by: default avatarDave Jones <davej@redhat.com>
parent bfe679ee
......@@ -308,7 +308,11 @@ static int __init longhaul_get_ranges(void)
minmult=50;
maxmult=longhaul_get_cpu_mult();
fsb = eblcr_fsb_table_v2[longhaul.bits.MaxMHzFSB];
/* Starting with the 1.2GHz parts, theres a 200MHz bus. */
if ((cpu_khz/1000) > 1200)
fsb = 200;
else
fsb = eblcr_fsb_table_v2[longhaul.bits.MaxMHzFSB];
break;
}
......
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