Skip to content

Commit

Permalink
regulator: s2mps11: Fix wrong arguments for regmap_update_bits() call
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Axel Lin authored and Mark Brown committed Aug 13, 2013
1 parent 6c683c9 commit 8085330
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/regulator/s2mps11.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit 8085330

Please sign in to comment.