Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1236702 > unrolled thread
| Started by | Mark Brown <broonie@kernel.org> |
|---|---|
| First post | 2015-09-30 21:40 +0200 |
| Last post | 2015-10-01 08:00 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] regulator: core: Handle probe deferral from DT when resolving supplies Mark Brown <broonie@kernel.org> - 2015-09-30 21:40 +0200
Re: [PATCH] regulator: core: Handle probe deferral from DT when resolving supplies Sascha Hauer <s.hauer@pengutronix.de> - 2015-10-01 08:00 +0200
| From | Mark Brown <broonie@kernel.org> |
|---|---|
| Date | 2015-09-30 21:40 +0200 |
| Subject | [PATCH] regulator: core: Handle probe deferral from DT when resolving supplies |
| Message-ID | <qevom-66i-21@gated-at.bofh.it> |
When resolving regulator-regulator supplies we ignore probe deferral
returns from regulator_dev_lookup() (such as are generated for DT when
we can see a supply is registered) and just fall back to the dummy
regulator if there are full constraints (as is the case for DT). This
means that probe deferral is broken for DT systems, fix that by paying
attention to -EPROBE_DEFER return codes like we do -ENODEV.
A further patch will simplify this further, this is a minimal fix for
the specific issue.
Reported-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Mark Brown <broonie@kernel.org>
---
Tested with my famous "I need to leave the house right now so haven't
even tried building this yet" test plan - please let me know how this
works for you.
drivers/regulator/core.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c
index af045e5..e9b94d7 100644
--- a/drivers/regulator/core.c
+++ b/drivers/regulator/core.c
@@ -1448,6 +1448,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;
get_device(&r->dev);
--
2.5.0
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Sascha Hauer <s.hauer@pengutronix.de> |
|---|---|
| Date | 2015-10-01 08:00 +0200 |
| Subject | Re: [PATCH] regulator: core: Handle probe deferral from DT when resolving supplies |
| Message-ID | <qeF4n-3bG-31@gated-at.bofh.it> |
| In reply to | #1236702 |
On Wed, Sep 30, 2015 at 08:30:52PM +0100, Mark Brown wrote: > When resolving regulator-regulator supplies we ignore probe deferral > returns from regulator_dev_lookup() (such as are generated for DT when > we can see a supply is registered) and just fall back to the dummy > regulator if there are full constraints (as is the case for DT). This > means that probe deferral is broken for DT systems, fix that by paying > attention to -EPROBE_DEFER return codes like we do -ENODEV. > > A further patch will simplify this further, this is a minimal fix for > the specific issue. > > Reported-by: Sascha Hauer <s.hauer@pengutronix.de> > Signed-off-by: Mark Brown <broonie@kernel.org> > --- > > Tested with my famous "I need to leave the house right now so haven't > even tried building this yet" test plan - please let me know how this > works for you. Yes, this works as expected. Tested-by: Sascha Hauer <s.hauer@pengutronix.de> Sascha -- Pengutronix e.K. | | Industrial Linux Solutions | http://www.pengutronix.de/ | Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 | Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 | -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web