diff mbox

[V2,09/26] thermal: cpu_cooling: no need to set cpufreq_state to zero

Message ID 013ea5e93099865298d229e7a9906c85289d7e07.1417664938.git.viresh.kumar@linaro.org
State Accepted
Commit 92e615ec82c0314fb480eeb19396f4ac15bf97ef
Headers show

Commit Message

Viresh Kumar Dec. 4, 2014, 4:11 a.m. UTC
Its already zero, we allocated cpufreq_dev with kzalloc.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
---
 drivers/thermal/cpu_cooling.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/drivers/thermal/cpu_cooling.c b/drivers/thermal/cpu_cooling.c
index 5378561..30e2ecb 100644
--- a/drivers/thermal/cpu_cooling.c
+++ b/drivers/thermal/cpu_cooling.c
@@ -499,7 +499,7 @@  __cpufreq_cooling_register(struct device_node *np,
 		return cool_dev;
 	}
 	cpufreq_dev->cool_dev = cool_dev;
-	cpufreq_dev->cpufreq_state = 0;
+
 	mutex_lock(&cooling_cpufreq_lock);
 
 	/* Register the notifier for first cpufreq cooling device */