diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2013-10-03 11:12:09 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-10-15 18:50:35 -0400 |
commit | 9b30367bbf3353a7dfc34ed800b7ff03cb35252b (patch) | |
tree | 23fedb27367ee72834b53670f30f8ddcbe256952 /drivers/cpufreq/sa1100-cpufreq.c | |
parent | c3d7d87d7f6fc35f1a97b628229e06bb0dffa0bf (diff) |
cpufreq: sa11x0: 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/sa1100-cpufreq.c')
-rw-r--r-- | drivers/cpufreq/sa1100-cpufreq.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/cpufreq/sa1100-cpufreq.c b/drivers/cpufreq/sa1100-cpufreq.c index a1d1bb72bac4..b282cea47e62 100644 --- a/drivers/cpufreq/sa1100-cpufreq.c +++ b/drivers/cpufreq/sa1100-cpufreq.c | |||
@@ -218,11 +218,7 @@ static int sa1100_target(struct cpufreq_policy *policy, | |||
218 | 218 | ||
219 | static int __init sa1100_cpu_init(struct cpufreq_policy *policy) | 219 | static int __init sa1100_cpu_init(struct cpufreq_policy *policy) |
220 | { | 220 | { |
221 | if (policy->cpu != 0) | 221 | return cpufreq_generic_init(policy, sa11x0_freq_table, CPUFREQ_ETERNAL); |
222 | return -EINVAL; | ||
223 | policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL; | ||
224 | |||
225 | return cpufreq_table_validate_and_show(policy, sa11x0_freq_table); | ||
226 | } | 222 | } |
227 | 223 | ||
228 | static struct cpufreq_driver sa1100_driver __refdata = { | 224 | static struct cpufreq_driver sa1100_driver __refdata = { |