mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-07 18:37:58 -04:00
staging: omap-thermal: fix error checking
The omap_bandgap_get_sensor_data() function returns ERR_PTR(), but it can also return NULL, in case of initilization, so we need to use IS_ERR_OR_NULL() rather than only IS_ERR(). Signed-off-by: Eduardo Valentin <eduardo.valentin@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
24796e1281
commit
35b052a6c9
@@ -260,7 +260,7 @@ int omap_thermal_expose_sensor(struct omap_bandgap *bg_ptr, int id,
|
||||
|
||||
data = omap_bandgap_get_sensor_data(bg_ptr, id);
|
||||
|
||||
if (IS_ERR(data))
|
||||
if (IS_ERR_OR_NULL(data))
|
||||
data = omap_thermal_build_data(bg_ptr, id);
|
||||
|
||||
if (!data)
|
||||
@@ -309,7 +309,7 @@ int omap_thermal_register_cpu_cooling(struct omap_bandgap *bg_ptr, int id)
|
||||
struct omap_thermal_data *data;
|
||||
|
||||
data = omap_bandgap_get_sensor_data(bg_ptr, id);
|
||||
if (IS_ERR(data))
|
||||
if (IS_ERR_OR_NULL(data))
|
||||
data = omap_thermal_build_data(bg_ptr, id);
|
||||
|
||||
if (!data)
|
||||
|
||||
Reference in New Issue
Block a user