PM / OPP: passing NULL to PTR_ERR()
The code was using PTR_ERR(NULL) which causes a static checker warning. I have fixed up the printks and changed the return to -ENOENT. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
f59d3ee848
commit
a6eed752f5
|
@ -223,8 +223,7 @@ int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask
|
||||||
/* Get OPP descriptor node */
|
/* Get OPP descriptor node */
|
||||||
np = _of_get_opp_desc_node(cpu_dev);
|
np = _of_get_opp_desc_node(cpu_dev);
|
||||||
if (!np) {
|
if (!np) {
|
||||||
dev_dbg(cpu_dev, "%s: Couldn't find opp node: %ld\n", __func__,
|
dev_dbg(cpu_dev, "%s: Couldn't find cpu_dev node.\n", __func__);
|
||||||
PTR_ERR(np));
|
|
||||||
return -ENOENT;
|
return -ENOENT;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -247,9 +246,9 @@ int dev_pm_opp_of_get_sharing_cpus(struct device *cpu_dev, cpumask_var_t cpumask
|
||||||
/* Get OPP descriptor node */
|
/* Get OPP descriptor node */
|
||||||
tmp_np = _of_get_opp_desc_node(tcpu_dev);
|
tmp_np = _of_get_opp_desc_node(tcpu_dev);
|
||||||
if (!tmp_np) {
|
if (!tmp_np) {
|
||||||
dev_err(tcpu_dev, "%s: Couldn't find opp node: %ld\n",
|
dev_err(tcpu_dev, "%s: Couldn't find tcpu_dev node.\n",
|
||||||
__func__, PTR_ERR(tmp_np));
|
__func__);
|
||||||
ret = PTR_ERR(tmp_np);
|
ret = -ENOENT;
|
||||||
goto put_cpu_node;
|
goto put_cpu_node;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue