diff options
author | Viresh Kumar | 2013-10-03 20:28:41 +0530 |
---|---|---|
committer | Rafael J. Wysocki | 2013-10-16 00:50:29 +0200 |
commit | daaf2a46c5f77120ce3cb92fb548972ee5db74bc (patch) | |
tree | b0ce627e24814aab7dd0d7b52ca2fa504a0aa57d /drivers/cpufreq/elanfreq.c | |
parent | 18bb6de7c475f4a2299b35d7f34d72be10c71466 (diff) |
cpufreq: elanfreq: don't initialize part of policy set by core
Many common initializations of struct policy are moved to core now and hence
this driver doesn't need to do it. This patch removes such code.
Most recent of those changes is to call ->get() in the core after calling
->init().
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/elanfreq.c')
-rw-r--r-- | drivers/cpufreq/elanfreq.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/cpufreq/elanfreq.c b/drivers/cpufreq/elanfreq.c index fe7053cd68af..d91a645a27ae 100644 --- a/drivers/cpufreq/elanfreq.c +++ b/drivers/cpufreq/elanfreq.c @@ -207,7 +207,6 @@ static int elanfreq_cpu_init(struct cpufreq_policy *policy) /* cpuinfo and default policy values */ policy->cpuinfo.transition_latency = CPUFREQ_ETERNAL; - policy->cur = elanfreq_get_cpu_frequency(0); return cpufreq_table_validate_and_show(policy, elanfreq_table); } |