Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=3f4a25f17e1073b5af36678b69755af6e56780c3
Commit:     3f4a25f17e1073b5af36678b69755af6e56780c3
Parent:     e11952b971ee729a8fdc2bfb1252f5760c0287b0
Author:     Rafa� Bilski <[EMAIL PROTECTED]>
AuthorDate: Thu Nov 30 03:36:44 2006 +0100
Committer:  Dave Jones <[EMAIL PROTECTED]>
CommitDate: Tue Dec 12 17:33:10 2006 -0500

    [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 <[EMAIL PROTECTED]>
    Signed-off-by: Dave Jones <[EMAIL PROTECTED]>
---
 arch/i386/kernel/cpu/cpufreq/longhaul.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/i386/kernel/cpu/cpufreq/longhaul.c 
b/arch/i386/kernel/cpu/cpufreq/longhaul.c
index 7233abe..0594629 100644
--- a/arch/i386/kernel/cpu/cpufreq/longhaul.c
+++ b/arch/i386/kernel/cpu/cpufreq/longhaul.c
@@ -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];
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to