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>
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 = {