projects
/
GitHub
/
exynos8895
/
android_kernel_samsung_universal8895.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f08f5de
)
regulator: max8649: Use DIV_ROUND_UP macro to calculate selector
author
Axel Lin
<axel.lin@gmail.com>
Thu, 8 Mar 2012 02:05:24 +0000
(10:05 +0800)
committer
Mark Brown
<broonie@opensource.wolfsonmicro.com>
Sun, 11 Mar 2012 20:48:54 +0000
(20:48 +0000)
Use DIV_ROUND_UP macro for better readability.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/regulator/max8649.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/regulator/max8649.c
b/drivers/regulator/max8649.c
index 636dfd45b7584b5a2dcf27e10c1c22d614f81134..82505fcb8d436da8927994311e72d63f1e26053c 100644
(file)
--- a/
drivers/regulator/max8649.c
+++ b/
drivers/regulator/max8649.c
@@
-101,8
+101,7
@@
static int max8649_set_voltage(struct regulator_dev *rdev,
min_uV, max_uV);
return -EINVAL;
}
- data = (min_uV - MAX8649_DCDC_VMIN + MAX8649_DCDC_STEP - 1)
- / MAX8649_DCDC_STEP;
+ data = DIV_ROUND_UP(min_uV - MAX8649_DCDC_VMIN, MAX8649_DCDC_STEP);
mask = MAX8649_VOL_MASK;
*selector = data & mask;