staging: omap-thermal: fix error check in omap_thermal_expose_sensor() and in omap_th...
[firefly-linux-kernel-4.4.55.git] / drivers / staging / omap-thermal / omap-thermal-common.c
index 61f1070c666777db427d2267dc1ab76d046ce29b..79a55aaae5a3aef7e9682dfb2b3543611dd97e1f 100644 (file)
@@ -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 (!data)
+       if (IS_ERR(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 (!data)
+       if (IS_ERR(data))
                data = omap_thermal_build_data(bg_ptr, id);
 
        if (!data)