projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
394ee3d
)
regulator: Fix s5m8767_set_voltage_time_sel calculation value
author
Sangbeom Kim
<sbkim73@samsung.com>
Fri, 9 Mar 2012 07:28:10 +0000
(16:28 +0900)
committer
Mark Brown
<broonie@opensource.wolfsonmicro.com>
Sun, 11 Mar 2012 20:49:29 +0000
(20:49 +0000)
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>
drivers/regulator/s5m8767.c
patch
|
blob
|
history
diff --git
a/drivers/regulator/s5m8767.c
b/drivers/regulator/s5m8767.c
index
e369d9e
..
3592ccb
100644
(file)
--- 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;
}