forked from luck/tmp_suning_uos_patched
cpufreq: arm_big_little: 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(). 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
776b57be65
commit
39b10ebe5d
@ -165,7 +165,7 @@ static int bL_cpufreq_init(struct cpufreq_policy *policy)
|
|||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
ret = cpufreq_frequency_table_cpuinfo(policy, freq_table[cur_cluster]);
|
ret = cpufreq_table_validate_and_show(policy, freq_table[cur_cluster]);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
dev_err(cpu_dev, "CPU %d, cluster: %d invalid freq table\n",
|
dev_err(cpu_dev, "CPU %d, cluster: %d invalid freq table\n",
|
||||||
policy->cpu, cur_cluster);
|
policy->cpu, cur_cluster);
|
||||||
@ -173,8 +173,6 @@ static int bL_cpufreq_init(struct cpufreq_policy *policy)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
cpufreq_frequency_table_get_attr(freq_table[cur_cluster], policy->cpu);
|
|
||||||
|
|
||||||
if (arm_bL_ops->get_transition_latency)
|
if (arm_bL_ops->get_transition_latency)
|
||||||
policy->cpuinfo.transition_latency =
|
policy->cpuinfo.transition_latency =
|
||||||
arm_bL_ops->get_transition_latency(cpu_dev);
|
arm_bL_ops->get_transition_latency(cpu_dev);
|
||||||
|
Loading…
Reference in New Issue
Block a user