aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2013-08-05 02:08:37 -0400
committerMark Brown <broonie@linaro.org>2013-08-13 06:17:58 -0400
commitf8f1d48be393f517a16de4271cc8b7854efd693a (patch)
treec543e476d136f8b35eefd06806db50170840654e
parent80853304cdfb850a5e407e0e3cc8d8dc2a0b3094 (diff)
regulator: s2mps11: Fix setting ramp_delay
Current code has wrong mask and val arguments for updating ramp_delay. Fix it. Also ensure the return value of get_ramp_delay() won't greater than 3 because the mask field for ramp_val only takes 2 bits. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Mark Brown <broonie@linaro.org>
-rw-r--r--drivers/regulator/s2mps11.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/regulator/s2mps11.c b/drivers/regulator/s2mps11.c
index 89140aed649f..5eba2ff8c0e8 100644
--- a/drivers/regulator/s2mps11.c
+++ b/drivers/regulator/s2mps11.c
@@ -50,6 +50,10 @@ static int get_ramp_delay(int ramp_delay)
50 break; 50 break;
51 cnt++; 51 cnt++;
52 } 52 }
53
54 if (cnt > 3)
55 cnt = 3;
56
53 return cnt; 57 return cnt;
54} 58}
55 59
@@ -203,8 +207,8 @@ static int s2mps11_set_ramp_delay(struct regulator_dev *rdev, int ramp_delay)
203 207
204 ramp_val = get_ramp_delay(ramp_delay); 208 ramp_val = get_ramp_delay(ramp_delay);
205 209
206 return regmap_update_bits(rdev->regmap, ramp_reg, 210 return regmap_update_bits(rdev->regmap, ramp_reg, 0x3 << ramp_shift,
207 ramp_val << ramp_shift, 1 << ramp_shift); 211 ramp_val << ramp_shift);
208 212
209ramp_disable: 213ramp_disable:
210 return regmap_update_bits(rdev->regmap, S2MPS11_REG_RAMP, 214 return regmap_update_bits(rdev->regmap, S2MPS11_REG_RAMP,