All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] regulator: core: fix _regulator_do_disable return value
@ 2018-07-13 12:56 Marco Felsch
  2018-07-13 13:07 ` Mark Brown
  0 siblings, 1 reply; 4+ messages in thread
From: Marco Felsch @ 2018-07-13 12:56 UTC (permalink / raw)
  To: lgirdwood, broonie; +Cc: m.purski, p.paillet, linux-kernel, kernel

Currently _regulator_do_disable returns 0 if either the ena_pin nor the
ops.disbale() isn't present. This assumes that the call was successful
but it wasn't because disbaling isn't supported at all.

The last case of the if-chain should return -EINVAL, because disabling
isn't supported by the driver as it is done already by
_regulator_do_enable.

Signed-off-by: Marco Felsch <m.felsch@pengutronix.de>
---
 drivers/regulator/core.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index bb1324f93143..69b4e096b632 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -2311,6 +2311,8 @@ static int _regulator_do_disable(struct regulator_dev *rdev)
 		ret = rdev->desc->ops->disable(rdev);
 		if (ret != 0)
 			return ret;
+	} else {
+		return -EINVAL;
 	}
 
 	/* cares about last_off_jiffy only if off_on_delay is required by
-- 
2.18.0


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

end of thread, other threads:[~2018-07-14 22:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-13 12:56 [PATCH] regulator: core: fix _regulator_do_disable return value Marco Felsch
2018-07-13 13:07 ` Mark Brown
2018-07-13 15:48   ` Marco Felsch
2018-07-13 16:15     ` 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.