aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/tps80031-regulator.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2014-02-26 10:19:30 +0900
committerMark Brown <broonie@linaro.org>2014-03-05 12:33:18 +0800
commit350ff52d409da8e081bcd79dd64d2093be896134 (patch)
tree2e21152bf23dfc448117b4f9f2a1da21bd7fc07b /drivers/regulator/tps80031-regulator.c
parentregulator: tps80031: Remove redundant error message (diff)
downloadlinux-dev-350ff52d409da8e081bcd79dd64d2093be896134.tar.xz
linux-dev-350ff52d409da8e081bcd79dd64d2093be896134.zip
regulator: tps80031: remove unnecessary parentheses
Remove unnecessary parentheses in order to fix the following checkpatch error. ERROR: return is not a function, parentheses are not required Signed-off-by: Jingoo Han <jg1.han@samsung.com> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator/tps80031-regulator.c')
-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)
ri->rinfo->state_reg, ret);
return ret;
}
- return ((reg_val & TPS80031_STATE_MASK) == TPS80031_STATE_ON);
+ return (reg_val & TPS80031_STATE_MASK) == TPS80031_STATE_ON;
}
static int tps80031_reg_enable(struct regulator_dev *rdev)