cpufreq: sh: 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(). Cc: Paul Mundt <lethal@linux-sh.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
ae025193d3
commit
c25d01b3e2
@ -120,9 +120,9 @@ static int sh_cpufreq_cpu_init(struct cpufreq_policy *policy)
|
|||||||
if (freq_table) {
|
if (freq_table) {
|
||||||
int result;
|
int result;
|
||||||
|
|
||||||
result = cpufreq_frequency_table_cpuinfo(policy, freq_table);
|
result = cpufreq_table_validate_and_show(policy, freq_table);
|
||||||
if (!result)
|
if (result)
|
||||||
cpufreq_frequency_table_get_attr(freq_table, cpu);
|
return result;
|
||||||
} else {
|
} else {
|
||||||
dev_notice(dev, "no frequency table found, falling back "
|
dev_notice(dev, "no frequency table found, falling back "
|
||||||
"to rate rounding.\n");
|
"to rate rounding.\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user