diff mbox series

drm: bridge: mcde_dsi: Drop explicit bridge remove

Message ID 20220401150533.7777-1-jagan@amarulasolutions.com (mailing list archive)
State New, archived
Headers show
Series drm: bridge: mcde_dsi: Drop explicit bridge remove | expand

Commit Message

Jagan Teki April 1, 2022, 3:05 p.m. UTC
This driver has been changed to use the resource managed
devm_drm_of_get_bridge() to get bridge from ->bind(), it's
unnecessary to call drm_of_panel_bridge_remove() to remove the
bridge from ->unbind() as devm_drm_of_get_bridge()
is automatically remove the bridge when @dev is unbound.

Drop it the drm_bridge_remove().

Cc: Linus Walleij <linus.walleij@linaro.org>
Reported-by: Maxime Ripard <maxime@cerno.tech>
Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
---
 drivers/gpu/drm/mcde/mcde_dsi.c | 1 -
 1 file changed, 1 deletion(-)

Comments

Linus Walleij April 1, 2022, 8:32 p.m. UTC | #1
On Fri, Apr 1, 2022 at 5:05 PM Jagan Teki <jagan@amarulasolutions.com> wrote:

> This driver has been changed to use the resource managed
> devm_drm_of_get_bridge() to get bridge from ->bind(), it's
> unnecessary to call drm_of_panel_bridge_remove() to remove the
> bridge from ->unbind() as devm_drm_of_get_bridge()
> is automatically remove the bridge when @dev is unbound.
>
> Drop it the drm_bridge_remove().
>
> Cc: Linus Walleij <linus.walleij@linaro.org>
> Reported-by: Maxime Ripard <maxime@cerno.tech>
> Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>

Reviewed-by: Linus Walleij <linus.walleij@linaro.org>

Yours,
Linus Walleij
Robert Foss April 4, 2022, 9:15 a.m. UTC | #2
Applied to drm-misc-next.
diff mbox series

Patch

diff --git a/drivers/gpu/drm/mcde/mcde_dsi.c b/drivers/gpu/drm/mcde/mcde_dsi.c
index 083a4728654d..960b49ea2ee5 100644
--- a/drivers/gpu/drm/mcde/mcde_dsi.c
+++ b/drivers/gpu/drm/mcde/mcde_dsi.c
@@ -1122,7 +1122,6 @@  static void mcde_dsi_unbind(struct device *dev, struct device *master,
 {
 	struct mcde_dsi *d = dev_get_drvdata(dev);
 
-	drm_bridge_remove(d->bridge_out);
 	regmap_update_bits(d->prcmu, PRCM_DSI_SW_RESET,
 			   PRCM_DSI_SW_RESET_DSI0_SW_RESETN, 0);
 }