Re: [PATCH v3 1/5] powernv: cpufreq driver for powernv platform
From: Gautham R Shenoy <hidden>
Date: 2014-03-21 14:55:07
Also in:
linux-pm
From: Gautham R Shenoy <hidden>
Date: 2014-03-21 14:55:07
Also in:
linux-pm
On Fri, Mar 21, 2014 at 04:24:27PM +0530, Viresh Kumar wrote:
quoted
quoted
quoted
+static int powernv_cpufreq_cpu_init(struct cpufreq_policy *policy) +{ + int base, i; + + base = cpu_first_thread_sibling(policy->cpu); + + for (i = 0; i < threads_per_core; i++) + cpumask_set_cpu(base + i, policy->cpus); + policy->cpuinfo.transition_latency = 25000; + + policy->cur = powernv_freqs[0].frequency; + cpufreq_frequency_table_get_attr(powernv_freqs, policy->cpu);This doesn't exist anymore.
Ok, I guess the right thing to do at this point is call cpufreq_table_validate_and_show(policy, powernv_freqs); Will fix the code to take care of this. -- Thanks and Regards gautham.