diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2013-10-03 10:59:14 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-10-15 18:50:34 -0400 |
commit | 17922ddd8eeb0d6474fbeb32a5366bb82d4273fa (patch) | |
tree | c2df16b20e18f59097b8662ddb064fbb4ce16483 /drivers/cpufreq/imx6q-cpufreq.c | |
parent | b249abaebfc2ce5cfac4cdb454a64ce6273aba2a (diff) |
cpufreq: imx6q: use cpufreq_generic_init()
Use generic cpufreq_generic_init() routine instead of replicating the same code
here.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'drivers/cpufreq/imx6q-cpufreq.c')
-rw-r--r-- | drivers/cpufreq/imx6q-cpufreq.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/cpufreq/imx6q-cpufreq.c b/drivers/cpufreq/imx6q-cpufreq.c index 9d22dfa7a2be..d81062f7dd73 100644 --- a/drivers/cpufreq/imx6q-cpufreq.c +++ b/drivers/cpufreq/imx6q-cpufreq.c | |||
@@ -154,18 +154,7 @@ post_notify: | |||
154 | 154 | ||
155 | static int imx6q_cpufreq_init(struct cpufreq_policy *policy) | 155 | static int imx6q_cpufreq_init(struct cpufreq_policy *policy) |
156 | { | 156 | { |
157 | int ret; | 157 | return cpufreq_generic_init(policy, freq_table, transition_latency); |
158 | |||
159 | ret = cpufreq_table_validate_and_show(policy, freq_table); | ||
160 | if (ret) { | ||
161 | dev_err(cpu_dev, "invalid frequency table: %d\n", ret); | ||
162 | return ret; | ||
163 | } | ||
164 | |||
165 | policy->cpuinfo.transition_latency = transition_latency; | ||
166 | cpumask_setall(policy->cpus); | ||
167 | |||
168 | return 0; | ||
169 | } | 158 | } |
170 | 159 | ||
171 | static struct cpufreq_driver imx6q_cpufreq_driver = { | 160 | static struct cpufreq_driver imx6q_cpufreq_driver = { |