aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/regulator/tps80031-regulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/tps80031-regulator.c b/drivers/regulator/tps80031-regulator.c
index ac88c988bb2e..26aa6d9c308f 100644
--- a/drivers/regulator/tps80031-regulator.c
+++ b/drivers/regulator/tps80031-regulator.c
@@ -115,7 +115,7 @@ static int tps80031_reg_is_enabled(struct regulator_dev *rdev)
115 ri->rinfo->state_reg, ret); 115 ri->rinfo->state_reg, ret);
116 return ret; 116 return ret;
117 } 117 }
118 return ((reg_val & TPS80031_STATE_MASK) == TPS80031_STATE_ON); 118 return (reg_val & TPS80031_STATE_MASK) == TPS80031_STATE_ON;
119} 119}
120 120
121static int tps80031_reg_enable(struct regulator_dev *rdev) 121static int tps80031_reg_enable(struct regulator_dev *rdev)