]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
staging: ti-soc-thermal: return error in case power switch is not supported
authorEduardo Valentin <eduardo.valentin@ti.com>
Mon, 1 Apr 2013 16:04:33 +0000 (12:04 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 1 Apr 2013 19:27:28 +0000 (12:27 -0700)
Improve ti_bandgap_power by returning an error code in case
the device does not support controlling its power state.

Signed-off-by: Eduardo Valentin <eduardo.valentin@ti.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/ti-soc-thermal/ti-bandgap.c

index d479e507b8b1a1f6f5569a31cc4c2e9b372045d0..a6aa75f6302c590ac881885c172a2705ad6ae341 100644 (file)
@@ -100,17 +100,19 @@ do {                                                              \
  */
 static int ti_bandgap_power(struct ti_bandgap *bgp, bool on)
 {
-       int i;
+       int i, ret = 0;
 
-       if (!TI_BANDGAP_HAS(bgp, POWER_SWITCH))
+       if (!TI_BANDGAP_HAS(bgp, POWER_SWITCH)) {
+               ret = -ENOTSUPP;
                goto exit;
+       }
 
        for (i = 0; i < bgp->conf->sensor_count; i++)
                /* active on 0 */
                RMW_BITS(bgp, i, temp_sensor_ctrl, bgap_tempsoff_mask, !on);
 
 exit:
-       return 0;
+       return ret;
 }
 
 /**