drm/panel: ilitek-ili9881c: Clean up on mipi_dsi_attach failure
authorDave Stevenson <dave.stevenson@raspberrypi.com>
Thu, 31 Mar 2022 11:03:36 +0000 (12:03 +0100)
committerDom Cobley <popcornmix@gmail.com>
Mon, 19 Feb 2024 11:33:20 +0000 (11:33 +0000)
mipi_dsi_attach is allowed to fail, and currently the probe
code doesn't clean up (mainly drm_panel_remove) if this happens.

Add cleanup code on failure.

Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
drivers/gpu/drm/panel/panel-ilitek-ili9881c.c

index aaaf354..e4e3cbb 100644 (file)
@@ -1345,7 +1345,11 @@ static int ili9881c_dsi_probe(struct mipi_dsi_device *dsi)
        dsi->format = MIPI_DSI_FMT_RGB888;
        dsi->lanes = 4;
 
-       return mipi_dsi_attach(dsi);
+       ret = mipi_dsi_attach(dsi);
+       if (ret)
+               drm_panel_remove(&ctx->panel);
+
+       return ret;
 }
 
 static void ili9881c_dsi_remove(struct mipi_dsi_device *dsi)