]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: ti-soc-thermal: propagate error code
authorEduardo Valentin <eduardo.valentin@ti.com>
Tue, 19 Mar 2013 14:54:28 +0000 (10:54 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 25 Mar 2013 18:28:32 +0000 (11:28 -0700)
While writing talert thresholds, propagate the error code from
ti_bandgap_update_alert_threshold to the caller of
_ti_bandgap_write_threshold.

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 5c946cd7d672b9dc59c6984f77e3bf8e257d18ce..d479e507b8b1a1f6f5569a31cc4c2e9b372045d0 100644 (file)
@@ -511,7 +511,7 @@ static int _ti_bandgap_write_threshold(struct ti_bandgap *bgp, int id, int val,
                goto exit;
 
        spin_lock(&bgp->lock);
-       ti_bandgap_update_alert_threshold(bgp, id, adc_val, hot);
+       ret = ti_bandgap_update_alert_threshold(bgp, id, adc_val, hot);
        spin_unlock(&bgp->lock);
 
 exit: