summaryrefslogtreecommitdiffstats
path: root/drivers/thermal/cpu_cooling.c
diff options
context:
space:
mode:
authorViresh Kumar <viresh.kumar@linaro.org>2014-12-04 09:41:53 +0530
committerEduardo Valentin <edubezval@gmail.com>2014-12-08 12:08:56 -0400
commit8e54d442fe3cdd1ffe5f563ee843b4d48e14ef6e (patch)
tree73114b05157102e949eb571bbc5f080ce533140d /drivers/thermal/cpu_cooling.c
parent5d3bdb8998e066fe270f2f71db7163d5ac40d989 (diff)
downloadop-kernel-dev-8e54d442fe3cdd1ffe5f563ee843b4d48e14ef6e.zip
op-kernel-dev-8e54d442fe3cdd1ffe5f563ee843b4d48e14ef6e.tar.gz
thermal: cpu_cooling: no need to initialze 'ret'
ret is initialized before it is used, so no need to set it to 0 in its declaration. Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
Diffstat (limited to 'drivers/thermal/cpu_cooling.c')
-rw-r--r--drivers/thermal/cpu_cooling.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/thermal/cpu_cooling.c b/drivers/thermal/cpu_cooling.c
index c144493..d57b8bb 100644
--- a/drivers/thermal/cpu_cooling.c
+++ b/drivers/thermal/cpu_cooling.c
@@ -454,7 +454,7 @@ __cpufreq_cooling_register(struct device_node *np,
struct cpufreq_cooling_device *cpufreq_dev;
unsigned int min = 0, max = 0;
char dev_name[THERMAL_NAME_LENGTH];
- int ret = 0, i;
+ int ret, i;
struct cpufreq_policy policy;
if (!cpufreq_frequency_get_table(cpumask_first(clip_cpus))) {
OpenPOWER on IntegriCloud