projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f920ec7
)
regulator: max8660: Fix brace alignment
author
Sachin Kamat
<sachin.kamat@linaro.org>
Wed, 19 Mar 2014 12:32:58 +0000
(18:02 +0530)
committer
Mark Brown
<broonie@linaro.org>
Wed, 19 Mar 2014 12:47:06 +0000
(12:47 +0000)
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>
drivers/regulator/max8660.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/regulator/max8660.c
b/drivers/regulator/max8660.c
index aabfb3b2407c040c82957b3443e21c710c7d9ba2..2fc4111887949e01e04b023d6065962853779d42 100644
(file)
--- 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;