Browse Source

[CPUFREQ] EPS - Correct 2nd brand test

Solution for small, but nasty bug: access beyond end of f_table for C7 brand.

Signed-off-by: Rafal Bilski <rafalbilski@interia.pl>
Signed-off-by: Dave Jones <davej@redhat.com>
Rafa Bilski 18 years ago
parent
commit
b6f45a4b07
1 changed files with 1 additions and 1 deletions
  1. 1 1
      arch/i386/kernel/cpu/cpufreq/e_powersaver.c

+ 1 - 1
arch/i386/kernel/cpu/cpufreq/e_powersaver.c

@@ -234,7 +234,7 @@ static int eps_cpu_init(struct cpufreq_policy *policy)
 
 	/* Fill frequency and MSR value table */
 	f_table = &centaur->freq_table[0];
-	if (brand == EPS_BRAND_EDEN) {
+	if (brand != EPS_BRAND_C7M) {
 		f_table[0].frequency = fsb * min_multiplier;
 		f_table[0].index = (min_multiplier << 8) | min_voltage;
 		f_table[1].frequency = fsb * max_multiplier;