diff options
author | Gabriel A. Devenyi <ace@staticwave.ca> | 2005-12-01 01:09:22 -0800 |
---|---|---|
committer | Dave Jones <davej@redhat.com> | 2005-12-01 01:23:24 -0800 |
commit | d4921914de19339d7cd987d2ed6d48754821f41a (patch) | |
tree | 6b16628fca942bc220ada8251820f31341ed089a /arch/i386 | |
parent | 537208c8072280ab87916710d5a3f7ef11ab94ff (diff) | |
download | talos-obmc-linux-d4921914de19339d7cd987d2ed6d48754821f41a.tar.gz talos-obmc-linux-d4921914de19339d7cd987d2ed6d48754821f41a.zip |
[PATCH] cpufreq-nforce2.c fix u32<0 test
Thanks to LinuxICC (http://linuxicc.sf.net), a comparison of a u32 less
than 0 was found, this patch changes the variable to a signed int so that
comparison is meaningful.
Signed-off-by: Gabriel A. Devenyi <ace@staticwave.ca>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Dave Jones <davej@redhat.com>
Diffstat (limited to 'arch/i386')
-rw-r--r-- | arch/i386/kernel/cpu/cpufreq/cpufreq-nforce2.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/i386/kernel/cpu/cpufreq/cpufreq-nforce2.c b/arch/i386/kernel/cpu/cpufreq/cpufreq-nforce2.c index 04a405345203..2b62dee35c6c 100644 --- a/arch/i386/kernel/cpu/cpufreq/cpufreq-nforce2.c +++ b/arch/i386/kernel/cpu/cpufreq/cpufreq-nforce2.c @@ -177,9 +177,10 @@ static unsigned int nforce2_fsb_read(int bootfsb) */ static int nforce2_set_fsb(unsigned int fsb) { - u32 pll, temp = 0; + u32 temp = 0; unsigned int tfsb; int diff; + int pll = 0; if ((fsb > max_fsb) || (fsb < NFORCE2_MIN_FSB)) { printk(KERN_ERR "cpufreq: FSB %d is out of range!\n", fsb); |