Commit 422a3063 authored by Eduardo Valentin's avatar Eduardo Valentin Committed by Greg Kroah-Hartman

staging: ti-soc-thermal: return error in case power switch is not supported

Improve ti_bandgap_power by returning an error code in case
the device does not support controlling its power state.
Signed-off-by: default avatarEduardo Valentin <eduardo.valentin@ti.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent af56976d
...@@ -100,17 +100,19 @@ do { \ ...@@ -100,17 +100,19 @@ do { \
*/ */
static int ti_bandgap_power(struct ti_bandgap *bgp, bool on) 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; goto exit;
}
for (i = 0; i < bgp->conf->sensor_count; i++) for (i = 0; i < bgp->conf->sensor_count; i++)
/* active on 0 */ /* active on 0 */
RMW_BITS(bgp, i, temp_sensor_ctrl, bgap_tempsoff_mask, !on); RMW_BITS(bgp, i, temp_sensor_ctrl, bgap_tempsoff_mask, !on);
exit: exit:
return 0; return ret;
} }
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment