Messages in this thread Patch in this message |  | | From | Andy Shevchenko <> | Subject | [PATCH v2 06/13] leds: lgm-sso: Remove explicit managed GPIO resource cleanup | Date | Sat, 29 May 2021 14:19:28 +0300 |
| |
The idea of managed resources is that they will be cleaned up automatically and in the proper order. Remove explicit GPIO cleanup.
Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com> --- v2: dropped one part of the change, i.e. LED unregistration (Pavel) drivers/leds/blink/leds-lgm-sso.c | 3 --- 1 file changed, 3 deletions(-)
diff --git a/drivers/leds/blink/leds-lgm-sso.c b/drivers/leds/blink/leds-lgm-sso.c index 877b44594b26..24f4057d5a05 100644 --- a/drivers/leds/blink/leds-lgm-sso.c +++ b/drivers/leds/blink/leds-lgm-sso.c @@ -613,9 +613,6 @@ static void sso_led_shutdown(struct sso_led *led) if (led->desc.hw_trig) regmap_update_bits(priv->mmap, SSO_CON3, BIT(led->desc.pin), 0); - if (led->gpiod) - devm_gpiod_put(priv->dev, led->gpiod); - led->priv = NULL; } -- 2.31.1
|  |