All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH RFT] regulator: max8972: Fix setting ramp delay
@ 2016-05-29 11:16 Axel Lin
  2016-05-30  8:48 ` Krzysztof Kozlowski
  2016-05-30 16:01 ` Applied "regulator: max8973: Fix setting ramp delay" to the regulator tree Mark Brown
  0 siblings, 2 replies; 5+ messages in thread
From: Axel Lin @ 2016-05-29 11:16 UTC (permalink / raw)
  To: Mark Brown
  Cc: Laxman Dewangan, Krzysztof Kozlowski, Mikko Perttunen,
	Liam Girdwood, linux-kernel

Current code can set ramp delay to a wrong setting that the return value
from .set_voltage_time_sel is not enough for proper delay.
Fix the logic in .set_ramp_delay and also remove unused ret_val variable.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
---
 drivers/regulator/max8973-regulator.c | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/drivers/regulator/max8973-regulator.c b/drivers/regulator/max8973-regulator.c
index 08d2f13..3958f50 100644
--- a/drivers/regulator/max8973-regulator.c
+++ b/drivers/regulator/max8973-regulator.c
@@ -271,22 +271,18 @@ static int max8973_set_ramp_delay(struct regulator_dev *rdev,
 	struct max8973_chip *max = rdev_get_drvdata(rdev);
 	unsigned int control;
 	int ret;
-	int ret_val;
 
 	/* Set ramp delay */
-	if (ramp_delay < 25000) {
+	if (ramp_delay <= 12000)
 		control = MAX8973_RAMP_12mV_PER_US;
-		ret_val = 12000;
-	} else if (ramp_delay < 50000) {
+	else if (ramp_delay <= 25000)
 		control = MAX8973_RAMP_25mV_PER_US;
-		ret_val = 25000;
-	} else if (ramp_delay < 200000) {
+	else if (ramp_delay <= 50000)
 		control = MAX8973_RAMP_50mV_PER_US;
-		ret_val = 50000;
-	} else {
+	else if (ramp_delay <= 200000)
 		control = MAX8973_RAMP_200mV_PER_US;
-		ret_val = 200000;
-	}
+	else
+		return -EINVAL;
 
 	ret = regmap_update_bits(max->regmap, MAX8973_CONTROL1,
 			MAX8973_RAMP_MASK, control);
-- 
2.5.0

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2016-05-30 16:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-29 11:16 [PATCH RFT] regulator: max8972: Fix setting ramp delay Axel Lin
2016-05-30  8:48 ` Krzysztof Kozlowski
2016-05-30  8:52   ` Axel Lin
2016-05-30  9:04     ` Krzysztof Kozlowski
2016-05-30 16:01 ` Applied "regulator: max8973: Fix setting ramp delay" to the regulator tree Mark Brown

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.