aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEduardo Valentin <eduardo.valentin@ti.com>2013-08-15 10:54:46 -0400
committerEduardo Valentin <eduardo.valentin@ti.com>2013-09-03 09:10:34 -0400
commit50e66c7ed8a1cd7e933628f9f5cf2617394adf5a (patch)
tree0b154f231362ca7886519f432f03f3b0a9eaf12b
parenta8892d83894bcbd2717846cfa85955152b73453f (diff)
drivers: thermal: add check when unregistering cpu cooling
This patch avoids NULL pointer accesses while unregistering cpu cooling devices, in case a NULL pointer is received. Cc: Zhang Rui <rui.zhang@intel.com> Cc: linux-pm@vger.kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Eduardo Valentin <eduardo.valentin@ti.com>
-rw-r--r--drivers/thermal/cpu_cooling.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/thermal/cpu_cooling.c b/drivers/thermal/cpu_cooling.c
index 5b3744e7a95b..d17902886c3f 100644
--- a/drivers/thermal/cpu_cooling.c
+++ b/drivers/thermal/cpu_cooling.c
@@ -498,8 +498,12 @@ EXPORT_SYMBOL_GPL(cpufreq_cooling_register);
498 */ 498 */
499void cpufreq_cooling_unregister(struct thermal_cooling_device *cdev) 499void cpufreq_cooling_unregister(struct thermal_cooling_device *cdev)
500{ 500{
501 struct cpufreq_cooling_device *cpufreq_dev = cdev->devdata; 501 struct cpufreq_cooling_device *cpufreq_dev;
502 502
503 if (!cdev)
504 return;
505
506 cpufreq_dev = cdev->devdata;
503 mutex_lock(&cooling_cpufreq_lock); 507 mutex_lock(&cooling_cpufreq_lock);
504 cpufreq_dev_count--; 508 cpufreq_dev_count--;
505 509