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


Groups > linux.kernel > #1650356

[PATCH V1] regulator: core: Fix voltage change propagations to supply regulators

From Tirupathi Reddy <tirupath@codeaurora.org>
Newsgroups linux.kernel
Subject [PATCH V1] regulator: core: Fix voltage change propagations to supply regulators
Date 2017-05-25 12:10 +0200
Message-ID <tKXSp-6Ri-3@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


Some regulators support get_voltage and some support get_voltage_sel
operations. Do voltage change propagation only when the current
regulator has a minimum dropout voltage specified or if the current
regulator lacks both get_voltage and get_voltage_sel operations.

Signed-off-by: Tirupathi Reddy <tirupath@codeaurora.org>
---
 drivers/regulator/core.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index c0d9ae8..9fecbd4 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -2938,7 +2938,8 @@ static int regulator_set_voltage_unlocked(struct regulator *regulator,
 	if (rdev->supply &&
 	    regulator_ops_is_valid(rdev->supply->rdev,
 				   REGULATOR_CHANGE_VOLTAGE) &&
-	    (rdev->desc->min_dropout_uV || !rdev->desc->ops->get_voltage)) {
+	    (rdev->desc->min_dropout_uV || !(rdev->desc->ops->get_voltage ||
+					   rdev->desc->ops->get_voltage_sel))) {
 		int current_supply_uV;
 		int selector;
 
-- 
QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation

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


Thread

[PATCH V1] regulator: core: Fix voltage change propagations to supply regulators Tirupathi Reddy <tirupath@codeaurora.org> - 2017-05-25 12:10 +0200
  Re: [PATCH V1] regulator: core: Fix voltage change propagations to  supply regulators Tirupathi Reddy T <tirupath@codeaurora.org> - 2017-06-05 12:40 +0200
    Re: [PATCH V1] regulator: core: Fix voltage change propagations to  supply regulators Mark Brown <broonie@kernel.org> - 2017-06-06 17:50 +0200

csiph-web