Fix the bug in duplicate states elimination in acpi-cpufreq.
Bug: Due to duplicate state elimiation in the loop earlier, the number
of valid_states can be less than perf->state_count, in which case
freq_table was ending up with some garbage/uninitialized entries
in the table.
Signed-off-by: Venkatesh Pallipadi <[email protected]>
From: Alexey Starikovskiy <
[email protected]>
Signed-off-by: Dave Jones <[email protected]>
perf->states[i].core_frequency * 1000;
valid_states++;
}
- data->freq_table[perf->state_count].frequency = CPUFREQ_TABLE_END;
+ data->freq_table[valid_states].frequency = CPUFREQ_TABLE_END;
result = cpufreq_frequency_table_cpuinfo(policy, data->freq_table);
if (result)