[CPUFREQ] Longhaul - fix 200MHz FSB
On board of Epia SP13000 is 10x133Mhz VIA Nehemiah. It is reported as 10x200MHz. This patch is fixing this issue. Signed-off-by: Rafa Bilski <rafalbilski@interia.pl> Signed-off-by: Dave Jones <davej@redhat.com>
This commit is contained in:
parent
e11952b971
commit
3f4a25f17e
1 changed files with 1 additions and 1 deletions
|
@ -410,7 +410,7 @@ static int __init longhaul_get_ranges(void)
|
|||
maxmult=longhaul_get_cpu_mult();
|
||||
|
||||
/* Starting with the 1.2GHz parts, theres a 200MHz bus. */
|
||||
if ((cpu_khz/1000) > 1200)
|
||||
if ((cpu_khz/maxmult) > 13400)
|
||||
fsb = 200;
|
||||
else
|
||||
fsb = eblcr_fsb_table_v2[longhaul.bits.MaxMHzFSB];
|
||||
|
|
Loading…
Reference in a new issue