diff mbox

[1/1] regulator: max8660: Fix brace alignment

Message ID 1395232378-26320-1-git-send-email-sachin.kamat@linaro.org
State Accepted
Commit dda5e36b1c4a196ab55479a1a68e13e52c642d8b
Headers show

Commit Message

Sachin Kamat March 19, 2014, 12:32 p.m. UTC
Move the "};" to next line as is the general coding practice.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 drivers/regulator/max8660.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Mark Brown March 19, 2014, 12:47 p.m. UTC | #1
On Wed, Mar 19, 2014 at 06:02:58PM +0530, Sachin Kamat wrote:
> Move the "};" to next line as is the general coding practice.

Applied, thanks.
diff mbox

Patch

diff --git a/drivers/regulator/max8660.c b/drivers/regulator/max8660.c
index aabfb3b2407c..2fc411188794 100644
--- a/drivers/regulator/max8660.c
+++ b/drivers/regulator/max8660.c
@@ -86,7 +86,8 @@  struct max8660 {
 static int max8660_write(struct max8660 *max8660, u8 reg, u8 mask, u8 val)
 {
 	static const u8 max8660_addresses[MAX8660_N_REGS] = {
-	  0x10, 0x12, 0x20, 0x23, 0x24, 0x29, 0x2a, 0x32, 0x33, 0x39, 0x80 };
+	 0x10, 0x12, 0x20, 0x23, 0x24, 0x29, 0x2a, 0x32, 0x33, 0x39, 0x80
+	};
 
 	int ret;
 	u8 reg_val = (max8660->shadow_regs[reg] & mask) | val;