[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>
This commit is contained in:
parent
bd0561c9d8
commit
b6f45a4b07
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@ static int eps_cpu_init(struct cpufreq_policy *policy)
|
|||
|
||||
/* Fill frequency and MSR value table */
|
||||
f_table = ¢aur->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;
|
||||
|
|
Loading…
Reference in a new issue