aboutsummaryrefslogtreecommitdiff
path: root/drivers/regulator/s5m8767.c
diff options
context:
space:
mode:
authorSangbeom Kim <sbkim73@samsung.com>2012-03-09 16:28:10 +0900
committerMark Brown <broonie@opensource.wolfsonmicro.com>2012-03-11 20:49:29 +0000
commit0f8b9c774442fa0ada36e5a0de9567588cc964cd (patch)
tree10f7d17beaead940c609e1a00649672157b7abff /drivers/regulator/s5m8767.c
parent394ee3d5bea96b6dd29ec42a797d1ee4c2af5f1d (diff)
regulator: Fix s5m8767_set_voltage_time_sel calculation value
In the s5m8767_set_voltage_time_sel function, divisor unit is wrong. ramp_delay is usec unit. So 1000 should be multiplied. Signed-off-by: Sangbeom Kim <sbkim73@samsung.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers/regulator/s5m8767.c')
-rw-r--r--drivers/regulator/s5m8767.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/s5m8767.c b/drivers/regulator/s5m8767.c
index e369d9ebec5..3592ccb4e60 100644
--- a/drivers/regulator/s5m8767.c
+++ b/drivers/regulator/s5m8767.c
@@ -457,7 +457,7 @@ static int s5m8767_set_voltage_time_sel(struct regulator_dev *rdev,
if (old_sel < new_sel)
return DIV_ROUND_UP(desc->step * (new_sel - old_sel),
- s5m8767->ramp_delay);
+ s5m8767->ramp_delay * 1000);
return 0;
}