summaryrefslogtreecommitdiff
path: root/drivers/staging/omap-thermal
diff options
context:
space:
mode:
authorEduardo Valentin <eduardo.valentin@ti.com>2013-03-15 12:59:57 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-15 16:02:09 (GMT)
commit3d84e52962f1ec1720bf0d7e84d9e3e4b1e35d16 (patch)
tree9558405a50a15738830c4615ccca5f127292090b /drivers/staging/omap-thermal
parent9c468aa2d5a376d4b3a1b5aac867f75c0754abed (diff)
downloadlinux-fsl-qoriq-3d84e52962f1ec1720bf0d7e84d9e3e4b1e35d16.tar.xz
staging: omap-thermal: make a omap_bandgap_power with only one exit point
Change the way the omap_bandgap_power is written so that it has only one exit entry (Documentation/CodingStyle). Signed-off-by: Eduardo Valentin <eduardo.valentin@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/omap-thermal')
-rw-r--r--drivers/staging/omap-thermal/omap-bandgap.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/staging/omap-thermal/omap-bandgap.c b/drivers/staging/omap-thermal/omap-bandgap.c
index a8d63a2..ec79ec1 100644
--- a/drivers/staging/omap-thermal/omap-bandgap.c
+++ b/drivers/staging/omap-thermal/omap-bandgap.c
@@ -91,12 +91,13 @@ static int omap_bandgap_power(struct omap_bandgap *bg_ptr, bool on)
int i;
if (!OMAP_BANDGAP_HAS(bg_ptr, POWER_SWITCH))
- return 0;
+ goto exit;
for (i = 0; i < bg_ptr->conf->sensor_count; i++)
/* active on 0 */
RMW_BITS(bg_ptr, i, temp_sensor_ctrl, bgap_tempsoff_mask, !on);
+exit:
return 0;
}