diff mbox

regulator: core: Allow dummy regulators for supplies

Message ID 20170411203437.28572-1-broonie@kernel.org
State Accepted
Commit c93609ab3924cc974fc90001fb6aa250a8900a3c
Headers show

Commit Message

Mark Brown April 11, 2017, 8:34 p.m. UTC
Rather than just not resolving the supply when there is explicitly no
supply mapping fall through and allow a dummy supply to be substituted.

Signed-off-by: Mark Brown <broonie@kernel.org>

---
 drivers/regulator/core.c | 8 --------
 1 file changed, 8 deletions(-)

-- 
2.11.0
diff mbox

Patch

diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index 82205cc5daa7..1e7e6d361238 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -1533,14 +1533,6 @@  static int regulator_resolve_supply(struct regulator_dev *rdev)
 	if (IS_ERR(r)) {
 		ret = PTR_ERR(r);
 
-		if (ret == -ENODEV) {
-			/*
-			 * No supply was specified for this regulator and
-			 * there will never be one.
-			 */
-			return 0;
-		}
-
 		/* Did the lookup explicitly defer for us? */
 		if (ret == -EPROBE_DEFER)
 			return ret;