diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2014-04-02 10:14:24 +0530 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-05-13 13:32:57 +0200 |
commit | f93f23c9adf0a65002db897d32dcb00c50ad963c (patch) | |
tree | a445c9b135d604b463b1e363e9e4044201ac49c2 | |
parent | e4a6fe45200a4d9c05355ab97d537a8348e48272 (diff) | |
download | lwn-f93f23c9adf0a65002db897d32dcb00c50ad963c.tar.gz lwn-f93f23c9adf0a65002db897d32dcb00c50ad963c.zip |
cpufreq: loongson2_cpufreq: don't declare local variable as static
commit 05ed672292dc9d37db4fafdd49baa782158cd795 upstream.
Earlier commit:
commit 652ed95d5fa6074b3c4ea245deb0691f1acb6656
Author: Viresh Kumar <viresh.kumar@linaro.org>
Date: Thu Jan 9 20:38:43 2014 +0530
cpufreq: introduce cpufreq_generic_get() routine
did some changes to driver and by mistake made cpuclk as a 'static' local
variable, which wasn't actually required. Fix it.
Fixes: 652ed95d5fa6 (cpufreq: introduce cpufreq_generic_get() routine)
Reported-by: Alexandre Oliva <lxoliva@fsfla.org>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/cpufreq/loongson2_cpufreq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpufreq/loongson2_cpufreq.c b/drivers/cpufreq/loongson2_cpufreq.c index b6581abc9207..8dead6fb28e8 100644 --- a/drivers/cpufreq/loongson2_cpufreq.c +++ b/drivers/cpufreq/loongson2_cpufreq.c @@ -69,7 +69,7 @@ static int loongson2_cpufreq_target(struct cpufreq_policy *policy, static int loongson2_cpufreq_cpu_init(struct cpufreq_policy *policy) { - static struct clk *cpuclk; + struct clk *cpuclk; int i; unsigned long rate; int ret; |