All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] pinctrl: meson: Drop pinctrl_unregister for devm_ registered device
@ 2016-07-26 14:51 ` Wei Yongjun
  0 siblings, 0 replies; 12+ messages in thread
From: Wei Yongjun @ 2016-07-26 14:51 UTC (permalink / raw)
  To: linus-amlogic

It's not necessary to unregister pin controller device registered
with devm_pinctrl_register() and using pinctrl_unregister() leads
to a double free.

This is detected by Coccinelle semantic patch.

Signed-off-by: Wei Yongjun <weiyj.lk@gmail.com>
---
 drivers/pinctrl/meson/pinctrl-meson.c | 8 +-------
 1 file changed, 1 insertion(+), 7 deletions(-)

diff --git a/drivers/pinctrl/meson/pinctrl-meson.c b/drivers/pinctrl/meson/pinctrl-meson.c
index 11623c6..44e69c9 100644
--- a/drivers/pinctrl/meson/pinctrl-meson.c
+++ b/drivers/pinctrl/meson/pinctrl-meson.c
@@ -727,13 +727,7 @@ static int meson_pinctrl_probe(struct platform_device *pdev)
 		return PTR_ERR(pc->pcdev);
 	}
 
-	ret = meson_gpiolib_register(pc);
-	if (ret) {
-		pinctrl_unregister(pc->pcdev);
-		return ret;
-	}
-
-	return 0;
+	return meson_gpiolib_register(pc);
 }
 
 static struct platform_driver meson_pinctrl_driver = {

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

end of thread, other threads:[~2016-08-04  8:10 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-26 14:51 [PATCH] pinctrl: meson: Drop pinctrl_unregister for devm_ registered device Wei Yongjun
2016-07-26 14:51 ` Wei Yongjun
2016-07-26 14:51 ` Wei Yongjun
2016-07-26 17:00 ` Dmitry Torokhov
2016-07-26 17:00   ` Dmitry Torokhov
2016-07-26 17:00   ` Dmitry Torokhov
2016-07-26 21:56   ` Kevin Hilman
2016-07-26 21:56     ` Kevin Hilman
2016-07-26 21:56     ` Kevin Hilman
2016-08-04  8:10 ` Linus Walleij
2016-08-04  8:10   ` Linus Walleij
2016-08-04  8:10   ` 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.