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:
6c683c9
)
regulator: s2mps11: Fix wrong arguments for regmap_update_bits() call
author
Axel Lin
<axel.lin@ingics.com>
Sat, 3 Aug 2013 09:10:42 +0000
(17:10 +0800)
committer
Mark Brown
<broonie@linaro.org>
Tue, 13 Aug 2013 10:17:58 +0000
(11:17 +0100)
Current code calls regmap_update_bits() with mask and val arguments swapped.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
drivers/regulator/s2mps11.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/regulator/s2mps11.c
b/drivers/regulator/s2mps11.c
index f047d36f60272c680b0c3a12d03b27b1dd85ab78..89140aed649fe30b8d5424bcf596dfa002f2ab1b 100644
(file)
--- a/
drivers/regulator/s2mps11.c
+++ b/
drivers/regulator/s2mps11.c
@@
-207,8
+207,8
@@
static int s2mps11_set_ramp_delay(struct regulator_dev *rdev, int ramp_delay)
ramp_val << ramp_shift, 1 << ramp_shift);
ramp_disable:
- return regmap_update_bits(rdev->regmap, S2MPS11_REG_RAMP,
0,
- 1 << enable_shift);
+ return regmap_update_bits(rdev->regmap, S2MPS11_REG_RAMP,
+ 1 << enable_shift
, 0
);
}
static struct regulator_ops s2mps11_ldo_ops = {