All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] gpiolib: Defer on non-DT find_chip_by_name() failure
@ 2018-07-03 17:26 Janusz Krzysztofik
  2018-07-03 17:31 ` Boris Brezillon
                   ` (2 more replies)
  0 siblings, 3 replies; 14+ messages in thread
From: Janusz Krzysztofik @ 2018-07-03 17:26 UTC (permalink / raw)
  To: Linus Walleij
  Cc: Boris Brezillon, linux-gpio, linux-kernel, Janusz Krzysztofik

Avoid replication of error code conversion in non-DT GPIO consumers'
code by returning -EPROBE_DEFER from gpiod_find() in case a chip
identified by its label in a registered lookup table is not ready.

See https://lkml.org/lkml/2018/5/30/176 for example case.

Signed-off-by: Janusz Krzysztofik <jmkrzyszt@gmail.com>
---
If accepted, please add
	Suggested-by: Boris Brezillon <boris.brezillon@bootlin.com>
if Boris doesn't mind.

Thanks,
Janusz

 drivers/gpio/gpiolib.c | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

diff --git a/drivers/gpio/gpiolib.c b/drivers/gpio/gpiolib.c
index e11a3bb03820..15dc77c80328 100644
--- a/drivers/gpio/gpiolib.c
+++ b/drivers/gpio/gpiolib.c
@@ -3639,9 +3639,16 @@ static struct gpio_desc *gpiod_find(struct device *dev, const char *con_id,
 		chip = find_chip_by_name(p->chip_label);
 
 		if (!chip) {
-			dev_err(dev, "cannot find GPIO chip %s\n",
-				p->chip_label);
-			return ERR_PTR(-ENODEV);
+			/*
+			 * As the lookup table indicates a chip with
+			 * p->chip_label should exist, assume it may
+			 * still appear latar and let the interested
+			 * consumer be probed again or let the Deferred
+			 * Probe infrastructure handle the error.
+			 */
+			dev_warn(dev, "cannot find GPIO chip %s, deferring\n",
+				 p->chip_label);
+			return ERR_PTR(-EPROBE_DEFER);
 		}
 
 		if (chip->ngpio <= p->chip_hwnum) {
-- 
2.16.4

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

end of thread, other threads:[~2018-07-09 13:18 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-03 17:26 [PATCH] gpiolib: Defer on non-DT find_chip_by_name() failure Janusz Krzysztofik
2018-07-03 17:31 ` Boris Brezillon
2018-07-04 19:13   ` Janusz Krzysztofik
2018-07-05  5:23     ` Uwe Kleine-König
2018-07-05  5:50     ` Lee Jones
2018-07-05  5:50       ` Lee Jones
2018-07-05 20:56       ` Janusz Krzysztofik
2018-07-06  6:06         ` Lee Jones
2018-07-06  9:03         ` Richard Fitzgerald
2018-07-06 18:58           ` Janusz Krzysztofik
2018-07-03 20:06 ` Andy Shevchenko
2018-07-03 22:18 ` [PATCH v2] " Janusz Krzysztofik
2018-07-04  7:17   ` Boris Brezillon
2018-07-09 13:18   ` Linus Walleij

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.