diff options
author | Stefan Wahren <wahrenst@gmx.net> | 2023-12-02 19:36:36 +0100 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2023-12-13 15:45:55 +0000 |
commit | e7431bd7899c955e126c742fe608512f7e2e111a (patch) | |
tree | 854b3d10050081471b2465803c39159d41f3d63e /drivers/leds | |
parent | 78da55c804cb9fb4ef3f839f4b284542a59b1a45 (diff) | |
download | linux-stable-e7431bd7899c955e126c742fe608512f7e2e111a.tar.gz linux-stable-e7431bd7899c955e126c742fe608512f7e2e111a.tar.bz2 linux-stable-e7431bd7899c955e126c742fe608512f7e2e111a.zip |
leds: gpio: Add kernel log if devm_fwnode_gpiod_get() fails
In case leds-gpio fails to get at least one of possibly many GPIOs
from the DT (e.g. the GPIO is already requested) neither gpiolib nor
the driver does provide any helpful error log:
leds-gpio: probe of leds failed with error -16
As the driver knows better how to handle errors with such mandatory
GPIOs, let's implement an error log which points to the affected
GPIO.
Signed-off-by: Stefan Wahren <wahrenst@gmx.net>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Link: https://lore.kernel.org/r/20231202183636.7055-1-wahrenst@gmx.net
Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'drivers/leds')
-rw-r--r-- | drivers/leds/leds-gpio.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/leds/leds-gpio.c b/drivers/leds/leds-gpio.c index 710c319ad312..83fcd7b6afff 100644 --- a/drivers/leds/leds-gpio.c +++ b/drivers/leds/leds-gpio.c @@ -172,6 +172,8 @@ static struct gpio_leds_priv *gpio_leds_create(struct device *dev) led.gpiod = devm_fwnode_gpiod_get(dev, child, NULL, GPIOD_ASIS, NULL); if (IS_ERR(led.gpiod)) { + dev_err_probe(dev, PTR_ERR(led.gpiod), "Failed to get GPIO '%pfw'\n", + child); fwnode_handle_put(child); return ERR_CAST(led.gpiod); } |