cpufreq: cpufreq-cpu0: use cpufreq_table_validate_and_show()
Lets use cpufreq_table_validate_and_show() instead of calling cpufreq_frequency_table_cpuinfo() and cpufreq_frequency_table_get_attr(). Acked-by: Shawn Guo <shawn.guo@linaro.org> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
e2889e2cb8
commit
7a90684956
|
@ -129,7 +129,7 @@ static int cpu0_cpufreq_init(struct cpufreq_policy *policy)
|
||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
ret = cpufreq_frequency_table_cpuinfo(policy, freq_table);
|
ret = cpufreq_table_validate_and_show(policy, freq_table);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
pr_err("invalid frequency table: %d\n", ret);
|
pr_err("invalid frequency table: %d\n", ret);
|
||||||
return ret;
|
return ret;
|
||||||
|
@ -145,8 +145,6 @@ static int cpu0_cpufreq_init(struct cpufreq_policy *policy)
|
||||||
*/
|
*/
|
||||||
cpumask_setall(policy->cpus);
|
cpumask_setall(policy->cpus);
|
||||||
|
|
||||||
cpufreq_frequency_table_get_attr(freq_table, policy->cpu);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue