diff options
Diffstat (limited to 'drivers/regulator/wm831x-dcdc.c')
-rw-r--r-- | drivers/regulator/wm831x-dcdc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/regulator/wm831x-dcdc.c b/drivers/regulator/wm831x-dcdc.c index bce25658e12e..0af6898bcd79 100644 --- a/drivers/regulator/wm831x-dcdc.c +++ b/drivers/regulator/wm831x-dcdc.c | |||
@@ -223,7 +223,7 @@ static int wm831x_buckv_map_voltage(struct regulator_dev *rdev, | |||
223 | if (min_uV < 600000) | 223 | if (min_uV < 600000) |
224 | vsel = 0; | 224 | vsel = 0; |
225 | else if (min_uV <= 1800000) | 225 | else if (min_uV <= 1800000) |
226 | vsel = ((min_uV - 600000) / 12500) + 8; | 226 | vsel = DIV_ROUND_UP(min_uV - 600000, 12500) + 8; |
227 | else | 227 | else |
228 | return -EINVAL; | 228 | return -EINVAL; |
229 | 229 | ||
@@ -993,4 +993,5 @@ MODULE_DESCRIPTION("WM831x DC-DC convertor driver"); | |||
993 | MODULE_LICENSE("GPL"); | 993 | MODULE_LICENSE("GPL"); |
994 | MODULE_ALIAS("platform:wm831x-buckv"); | 994 | MODULE_ALIAS("platform:wm831x-buckv"); |
995 | MODULE_ALIAS("platform:wm831x-buckp"); | 995 | MODULE_ALIAS("platform:wm831x-buckp"); |
996 | MODULE_ALIAS("platform:wm831x-boostp"); | ||
996 | MODULE_ALIAS("platform:wm831x-epe"); | 997 | MODULE_ALIAS("platform:wm831x-epe"); |