[PATCH v1 11/28] leds: lgm-sso: Remove explicit managed resource cleanups

From: Andy Shevchenko
Date: Mon May 10 2021 - 05:52:08 EST


The idea of managed resources that they will be cleaned up automatically
and in the proper order. Remove explicit cleanups.

Signed-off-by: Andy Shevchenko <andy.shevchenko@xxxxxxxxx>
---
drivers/leds/blink/leds-lgm-sso.c | 6 ------
1 file changed, 6 deletions(-)

diff --git a/drivers/leds/blink/leds-lgm-sso.c b/drivers/leds/blink/leds-lgm-sso.c
index e76be25480b4..a7f2e5436ba2 100644
--- a/drivers/leds/blink/leds-lgm-sso.c
+++ b/drivers/leds/blink/leds-lgm-sso.c
@@ -606,16 +606,10 @@ static void sso_led_shutdown(struct sso_led *led)
{
struct sso_led_priv *priv = led->priv;

- /* unregister led */
- devm_led_classdev_unregister(priv->dev, &led->cdev);
-
/* clear HW control bit */
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