Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b6f45a4b authored by Rafa Bilski's avatar Rafa Bilski Committed by Dave Jones
Browse files

[CPUFREQ] EPS - Correct 2nd brand test



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

Signed-off-by: default avatarRafal Bilski <rafalbilski@interia.pl>
Signed-off-by: default avatarDave Jones <davej@redhat.com>
parent bd0561c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;