summaryrefslogtreecommitdiffstats
path: root/drivers/thermal/cpu_cooling.c
diff options
context:
space:
mode:
authorViresh Kumar2014-12-04 05:11:58 +0100
committerEduardo Valentin2014-12-08 17:08:57 +0100
commit730abe064b6f8860302b75a689ceed059c08e0b1 (patch)
treedd7c6b8c70300c12ba77d681e3af287c1d82f341 /drivers/thermal/cpu_cooling.c
parentthermal: cpu_cooling: Don't check is_cpufreq_valid() (diff)
downloadkernel-qcow2-linux-730abe064b6f8860302b75a689ceed059c08e0b1.tar.gz
kernel-qcow2-linux-730abe064b6f8860302b75a689ceed059c08e0b1.tar.xz
kernel-qcow2-linux-730abe064b6f8860302b75a689ceed059c08e0b1.zip
thermal: cpu_cooling: do error handling at the bottom in __cpufreq_cooling_register()
This makes life easy and bug free. And is scalable for future resource allocations. Acked-by: Javi Merino <javi.merino@arm.com> 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.c19
1 files changed, 12 insertions, 7 deletions
diff --git a/drivers/thermal/cpu_cooling.c b/drivers/thermal/cpu_cooling.c
index 1dd4cc403a2a..491d90aeeebe 100644
--- a/drivers/thermal/cpu_cooling.c
+++ b/drivers/thermal/cpu_cooling.c
@@ -448,8 +448,8 @@ __cpufreq_cooling_register(struct device_node *np,
ret = get_idr(&cpufreq_idr, &cpufreq_dev->id);
if (ret) {
- kfree(cpufreq_dev);
- return ERR_PTR(ret);
+ cool_dev = ERR_PTR(ret);
+ goto free_cdev;
}
snprintf(dev_name, sizeof(dev_name), "thermal-cpufreq-%d",
@@ -457,11 +457,9 @@ __cpufreq_cooling_register(struct device_node *np,
cool_dev = thermal_of_cooling_device_register(np, dev_name, cpufreq_dev,
&cpufreq_cooling_ops);
- if (IS_ERR(cool_dev)) {
- release_idr(&cpufreq_idr, cpufreq_dev->id);
- kfree(cpufreq_dev);
- return cool_dev;
- }
+ if (IS_ERR(cool_dev))
+ goto remove_idr;
+
cpufreq_dev->cool_dev = cool_dev;
mutex_lock(&cooling_cpufreq_lock);
@@ -476,6 +474,13 @@ __cpufreq_cooling_register(struct device_node *np,
mutex_unlock(&cooling_cpufreq_lock);
return cool_dev;
+
+remove_idr:
+ release_idr(&cpufreq_idr, cpufreq_dev->id);
+free_cdev:
+ kfree(cpufreq_dev);
+
+ return cool_dev;
}
/**