Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1380064

[PATCH] regulator: qcom_spmi: Always return a selector when asked

From Stephen Boyd <sboyd@codeaurora.org>
Newsgroups linux.kernel
Subject [PATCH] regulator: qcom_spmi: Always return a selector when asked
Date 2016-04-15 19:50 +0200
Message-ID <rog2u-6M8-9@gated-at.bofh.it> (permalink)
References <riA3T-5P1-7@gated-at.bofh.it> <riA3T-5P1-9@gated-at.bofh.it> <riA3T-5P1-9@gated-at.bofh.it> <ro910-1ni-21@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


I had a thinko in spmi_regulator_select_voltage_same_range() when
converting it to return selectors via the function's return value
instead of by modifying a pointer argument. I only tested
multi-range regulators so this passed through testing. Fix it by
returning the selector here.

Fixes: 1b5b19689278 ("regulator: qcom_spmi: Only use selector based regulator ops")
Reported-by: Rajendra Nayak <rnayak@codeaurora.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
---
 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 f502f2cc65d8..84cce21e98cd 100644
--- a/drivers/regulator/qcom_spmi-regulator.c
+++ b/drivers/regulator/qcom_spmi-regulator.c
@@ -692,7 +692,7 @@ static int spmi_regulator_select_voltage_same_range(struct spmi_regulator *vreg,
 	if (selector >= vreg->set_points->n_voltages)
 		goto different_range;
 
-	return 0;
+	return selector;
 
 different_range:
 	return spmi_regulator_select_voltage(vreg, min_uV, max_uV);
-- 
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
a Linux Foundation Collaborative Project

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Re: [PATCH v2 2/2] regulator: qcom_spmi: Only use selector based  regulator ops Rajendra Nayak <rnayak@codeaurora.org> - 2016-04-15 12:20 +0200
  [PATCH] regulator: qcom_spmi: Always return a selector when asked Stephen Boyd <sboyd@codeaurora.org> - 2016-04-15 19:50 +0200
    Applied "regulator: qcom_spmi: Always return a selector when asked" to the regulator tree Mark Brown <broonie@kernel.org> - 2016-04-18 15:20 +0200

csiph-web