diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2013-10-03 10:59:22 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2013-10-15 18:50:35 -0400 |
commit | a307a1e6bc0da1ea1e5960fb386b2bbc3587e808 (patch) | |
tree | 1f253f1cddf7897881fb7063f374fecb866a1b78 /drivers/cpufreq/s3c24xx-cpufreq.c | |
parent | 8ce6f9de9785857669d39e061c9d2e87d1c516d7 (diff) |
cpufreq: s3c: 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/s3c24xx-cpufreq.c')
-rw-r--r-- | drivers/cpufreq/s3c24xx-cpufreq.c | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/drivers/cpufreq/s3c24xx-cpufreq.c b/drivers/cpufreq/s3c24xx-cpufreq.c index e0fbaefc69a7..485088253358 100644 --- a/drivers/cpufreq/s3c24xx-cpufreq.c +++ b/drivers/cpufreq/s3c24xx-cpufreq.c | |||
@@ -373,18 +373,7 @@ struct clk *s3c_cpufreq_clk_get(struct device *dev, const char *name) | |||
373 | 373 | ||
374 | static int s3c_cpufreq_init(struct cpufreq_policy *policy) | 374 | static int s3c_cpufreq_init(struct cpufreq_policy *policy) |
375 | { | 375 | { |
376 | printk(KERN_INFO "%s: initialising policy %p\n", __func__, policy); | 376 | return cpufreq_generic_init(policy, ftab, cpu_cur.info->latency); |
377 | |||
378 | if (policy->cpu != 0) | ||
379 | return -EINVAL; | ||
380 | |||
381 | /* feed the latency information from the cpu driver */ | ||
382 | policy->cpuinfo.transition_latency = cpu_cur.info->latency; | ||
383 | |||
384 | if (ftab) | ||
385 | return cpufreq_table_validate_and_show(policy, ftab); | ||
386 | |||
387 | return 0; | ||
388 | } | 377 | } |
389 | 378 | ||
390 | static int __init s3c_cpufreq_initclks(void) | 379 | static int __init s3c_cpufreq_initclks(void) |