On 13 August 2013 10:38, Viresh Kumar viresh.kumar@linaro.org wrote:
Thanks for your patch, I have folded below patch with your patch while applying..
And actually this too, otherwise I need to do this separately in another patch..
diff --git a/drivers/cpufreq/at32ap-cpufreq.c b/drivers/cpufreq/at32ap-cpufreq.c index c586d3e..1d19fa5 100644 --- a/drivers/cpufreq/at32ap-cpufreq.c +++ b/drivers/cpufreq/at32ap-cpufreq.c @@ -136,15 +136,12 @@ static int __init at32_cpufreq_driver_init(struct cpufreq_policy *policy)
freq_table[steps - 1].frequency = CPUFREQ_TABLE_END;
- retval = cpufreq_frequency_table_cpuinfo(policy, freq_table); - if (retval) - goto out_err_kfree; - - cpufreq_frequency_table_get_attr(freq_table, policy->cpu); - printk("cpufreq: AT32AP CPU frequency driver\n"); + retval = cpufreq_table_validate_and_show(policy, freq_table); + if (!retval) { + printk("cpufreq: AT32AP CPU frequency driver\n"); + return 0; + }
- return 0; -out_err_kfree: kfree(freq_table); out_err_put_clk: clk_put(cpuclk);