diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-03-19 18:02:58 +0530 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-03-19 12:47:06 +0000 |
commit | dda5e36b1c4a196ab55479a1a68e13e52c642d8b (patch) | |
tree | 566544574809a3aa66992fc7b382798ffbc46867 /drivers/regulator/max8660.c | |
parent | f920ec798180899fff278973d174d78445d7e7ab (diff) | |
download | linux-dda5e36b1c4a196ab55479a1a68e13e52c642d8b.tar.gz linux-dda5e36b1c4a196ab55479a1a68e13e52c642d8b.tar.bz2 linux-dda5e36b1c4a196ab55479a1a68e13e52c642d8b.zip |
regulator: max8660: Fix brace alignment
Move the "};" to next line as is the general coding practice.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator/max8660.c')
-rw-r--r-- | drivers/regulator/max8660.c | 3 |
1 files changed, 2 insertions, 1 deletions
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; |