summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2015-10-06 11:00:38 (GMT)
committerMark Brown <broonie@kernel.org>2015-10-06 11:00:38 (GMT)
commit6710f223433588af582c0e4dbecbca72a36c4594 (patch)
tree1c176df20e587e2a847a6c0371eb239f57c5b280
parent049e6dde7e57f0054fdc49102e7ef4830c698b46 (diff)
parent06423121d9eba0a56b9341cf82b88479017bce14 (diff)
downloadlinux-6710f223433588af582c0e4dbecbca72a36c4594.tar.xz
Merge remote-tracking branch 'regulator/fix/core' into regulator-linus
-rw-r--r--drivers/regulator/core.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index 7849187..8a34f6a 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -1403,6 +1403,10 @@ static int regulator_resolve_supply(struct regulator_dev *rdev)
return 0;
}
+ /* Did the lookup explicitly defer for us? */
+ if (ret == -EPROBE_DEFER)
+ return ret;
+
if (have_full_constraints()) {
r = dummy_regulator_rdev;
} else {