aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator
diff options
context:
space:
mode:
authorSachin Kamat <sachin.kamat@linaro.org>2014-03-18 15:53:04 +0530
committerMark Brown <broonie@linaro.org>2014-03-18 12:43:20 +0000
commita5f8f96307f5a653018b9c7d91e620ef6bebd55c (patch)
tree00d4ccb8badd91a831617246a4e75be67fe010df /drivers/regulator
parentregulator: max8952: Use managed regulator registration (diff)
downloadlinux-dev-a5f8f96307f5a653018b9c7d91e620ef6bebd55c.tar.xz
linux-dev-a5f8f96307f5a653018b9c7d91e620ef6bebd55c.zip
regulator: max8952: Silence checkpatch warning
Silences the following type of checkpatch warning: WARNING: Missing a blank line after declarations Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/max8952.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/regulator/max8952.c b/drivers/regulator/max8952.c
index c5ee3cc048ee..d920f5a32ec8 100644
--- a/drivers/regulator/max8952.c
+++ b/drivers/regulator/max8952.c
@@ -57,6 +57,7 @@ struct max8952_data {
static int max8952_read_reg(struct max8952_data *max8952, u8 reg)
{
int ret = i2c_smbus_read_byte_data(max8952->client, reg);
+
if (ret > 0)
ret &= 0xff;