thermal: cpu_cooling: propagate error returned by idr_alloc()

We aren't supposed to return our own error type here. Return what we got.

Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
This commit is contained in:
Viresh Kumar 2014-12-04 09:41:54 +05:30 committed by Eduardo Valentin
parent 8e54d442fe
commit 268ac445ee

View file

@ -485,7 +485,7 @@ __cpufreq_cooling_register(struct device_node *np,
ret = get_idr(&cpufreq_idr, &cpufreq_dev->id);
if (ret) {
kfree(cpufreq_dev);
return ERR_PTR(-EINVAL);
return ERR_PTR(ret);
}
snprintf(dev_name, sizeof(dev_name), "thermal-cpufreq-%d",