Commit da40777e authored by Dave Jones's avatar Dave Jones

[CPUFREQ] Don't guess FSB on Nehemiah.

Instead we can get it from the maximum capable fsb bits (given thats
what we boot at).
parent 7886396c
......@@ -245,7 +245,16 @@ static int __init longhaul_get_ranges (void)
else
minmult = multipliers[invalue];
fsb = guess_fsb(maxmult);
switch (longhaul.bits.MaxMHzFSB) {
case 0x0: fsb=133;
break;
case 0x1: fsb=100;
break;
case 0x2: printk (KERN_INFO PFX "Invalid (reserved) FSB!\n");
return -EINVAL;
case 0x3: fsb=66;
break;
}
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