From 419d06a1cf58d9b99b25b5f578418b80070043a3 Mon Sep 17 00:00:00 2001 From: Axel Lin Date: Thu, 18 Jun 2015 08:50:39 +0800 Subject: [PATCH] regulator: qcom_spmi: Fix calculating number of voltages n /= range->step_uV + 1; is equivalent to n /= (range->step_uV + 1); which is wrong. Fix it. Signed-off-by: Axel Lin Acked-by: Stephen Boyd Signed-off-by: Mark Brown --- drivers/regulator/qcom_spmi-regulator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/regulator/qcom_spmi-regulator.c b/drivers/regulator/qcom_spmi-regulator.c index 16a5c1885153..850a30a95b5b 100644 --- a/drivers/regulator/qcom_spmi-regulator.c +++ b/drivers/regulator/qcom_spmi-regulator.c @@ -1106,7 +1106,7 @@ static void spmi_calculate_num_voltages(struct spmi_voltage_set_points *points) n = 0; if (range->set_point_max_uV) { n = range->set_point_max_uV - range->set_point_min_uV; - n /= range->step_uV + 1; + n = (n / range->step_uV) + 1; } range->n_voltages = n; points->n_voltages += n; -- 2.11.0