Commit 80853304 authored by Axel Lin's avatar Axel Lin Committed by Mark Brown

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: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 6c683c92
...@@ -207,8 +207,8 @@ static int s2mps11_set_ramp_delay(struct regulator_dev *rdev, int ramp_delay) ...@@ -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_val << ramp_shift, 1 << ramp_shift);
ramp_disable: ramp_disable:
return regmap_update_bits(rdev->regmap, S2MPS11_REG_RAMP, 0, return regmap_update_bits(rdev->regmap, S2MPS11_REG_RAMP,
1 << enable_shift); 1 << enable_shift, 0);
} }
static struct regulator_ops s2mps11_ldo_ops = { static struct regulator_ops s2mps11_ldo_ops = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment