diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-03-18 06:23:04 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-03-18 08:43:20 -0400 |
commit | a5f8f96307f5a653018b9c7d91e620ef6bebd55c (patch) | |
tree | 00d4ccb8badd91a831617246a4e75be67fe010df | |
parent | b874f41c6b3da1a65054f8a8c2fbe77faa9d80be (diff) |
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>
-rw-r--r-- | drivers/regulator/max8952.c | 1 |
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 { | |||
57 | static int max8952_read_reg(struct max8952_data *max8952, u8 reg) | 57 | static int max8952_read_reg(struct max8952_data *max8952, u8 reg) |
58 | { | 58 | { |
59 | int ret = i2c_smbus_read_byte_data(max8952->client, reg); | 59 | int ret = i2c_smbus_read_byte_data(max8952->client, reg); |
60 | |||
60 | if (ret > 0) | 61 | if (ret > 0) |
61 | ret &= 0xff; | 62 | ret &= 0xff; |
62 | 63 | ||