diff options
author | Axel Lin <axel.lin@gmail.com> | 2012-06-08 02:35:32 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-06-17 16:01:21 -0400 |
commit | e08ef739feec5341fe9382a9f5173ddd56c95f93 (patch) | |
tree | 5ef9ae1964e26561d6f5d98baa85f02a03514318 /drivers/regulator/tps62360-regulator.c | |
parent | c70ad9dcf08c839b018d8c440bd8c19aabbb08a8 (diff) |
regulator: tps62360: Simplify tps62360_set_voltage_time_sel implementation
For linear mappings, we can use below equation to get the voltage difference
between new_selector and old_selector:
abs(new_selector - old_selector) * rdev->desc->uV_step
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator/tps62360-regulator.c')
-rw-r--r-- | drivers/regulator/tps62360-regulator.c | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/drivers/regulator/tps62360-regulator.c b/drivers/regulator/tps62360-regulator.c index e534269ed44a..d044a58640e7 100644 --- a/drivers/regulator/tps62360-regulator.c +++ b/drivers/regulator/tps62360-regulator.c | |||
@@ -179,17 +179,10 @@ static int tps62360_set_voltage_time_sel(struct regulator_dev *rdev, | |||
179 | unsigned int old_selector, unsigned int new_selector) | 179 | unsigned int old_selector, unsigned int new_selector) |
180 | { | 180 | { |
181 | struct tps62360_chip *tps = rdev_get_drvdata(rdev); | 181 | struct tps62360_chip *tps = rdev_get_drvdata(rdev); |
182 | int old_uV, new_uV; | ||
183 | 182 | ||
184 | old_uV = regulator_list_voltage_linear(rdev, old_selector); | 183 | return DIV_ROUND_UP(abs(new_selector - old_selector) * |
185 | if (old_uV < 0) | 184 | rdev->desc->uV_step, |
186 | return old_uV; | 185 | tps->change_uv_per_us); |
187 | |||
188 | new_uV = regulator_list_voltage_linear(rdev, new_selector); | ||
189 | if (new_uV < 0) | ||
190 | return new_uV; | ||
191 | |||
192 | return DIV_ROUND_UP(abs(old_uV - new_uV), tps->change_uv_per_us); | ||
193 | } | 186 | } |
194 | 187 | ||
195 | static int tps62360_set_mode(struct regulator_dev *rdev, unsigned int mode) | 188 | static int tps62360_set_mode(struct regulator_dev *rdev, unsigned int mode) |