diff mbox

[4/4] regulator: max8952: Silence checkpatch warning

Message ID 1395138184-25287-4-git-send-email-sachin.kamat@linaro.org
State Accepted
Commit a5f8f96307f5a653018b9c7d91e620ef6bebd55c
Headers show

Commit Message

Sachin Kamat March 18, 2014, 10:23 a.m. UTC
Silences the following type of checkpatch warning:
WARNING: Missing a blank line after declarations

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 drivers/regulator/max8952.c |    1 +
 1 file changed, 1 insertion(+)

Comments

Mark Brown March 18, 2014, 12:43 p.m. UTC | #1
On Tue, Mar 18, 2014 at 03:53:04PM +0530, Sachin Kamat wrote:
> Silences the following type of checkpatch warning:
> WARNING: Missing a blank line after declarations

Applied, thanks.
diff mbox

Patch

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;