diff options
author | Axel Lin <axel.lin@ingics.com> | 2013-08-03 05:10:42 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-08-13 06:17:58 -0400 |
commit | 80853304cdfb850a5e407e0e3cc8d8dc2a0b3094 (patch) | |
tree | ac159908db528dbb4ae2fd343d633a2520b9c9bb /drivers/regulator/s2mps11.c | |
parent | 6c683c929977b90795939e1e862271c112e7d10f (diff) |
regulator: s2mps11: Fix wrong arguments for regmap_update_bits() call
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>
Diffstat (limited to 'drivers/regulator/s2mps11.c')
-rw-r--r-- | drivers/regulator/s2mps11.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/regulator/s2mps11.c b/drivers/regulator/s2mps11.c index f047d36f6027..89140aed649f 100644 --- 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) | |||
207 | ramp_val << ramp_shift, 1 << ramp_shift); | 207 | ramp_val << ramp_shift, 1 << ramp_shift); |
208 | 208 | ||
209 | ramp_disable: | 209 | ramp_disable: |
210 | return regmap_update_bits(rdev->regmap, S2MPS11_REG_RAMP, 0, | 210 | return regmap_update_bits(rdev->regmap, S2MPS11_REG_RAMP, |
211 | 1 << enable_shift); | 211 | 1 << enable_shift, 0); |
212 | } | 212 | } |
213 | 213 | ||
214 | static struct regulator_ops s2mps11_ldo_ops = { | 214 | static struct regulator_ops s2mps11_ldo_ops = { |