Commit 882c35af authored by Heiko Stuebner's avatar Heiko Stuebner Committed by Thierry Reding

drm/panel: p079zca: unconditionally remove the panel on removal

There is no need to check innolux->base.dev when trying to remove
the panel, as that variable is always set directly before the panel
gets added and will still be available on panel_remove.
Signed-off-by: default avatarHeiko Stuebner <heiko@sntech.de>
Reviewed-by: default avatarPhilipp Zabel <p.zabel@pengutronix.de>
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180816140920.5009-1-heiko@sntech.de
parent 94889b48
...@@ -506,8 +506,7 @@ static int innolux_panel_add(struct mipi_dsi_device *dsi, ...@@ -506,8 +506,7 @@ static int innolux_panel_add(struct mipi_dsi_device *dsi,
static void innolux_panel_del(struct innolux_panel *innolux) static void innolux_panel_del(struct innolux_panel *innolux)
{ {
if (innolux->base.dev) drm_panel_remove(&innolux->base);
drm_panel_remove(&innolux->base);
} }
static int innolux_panel_probe(struct mipi_dsi_device *dsi) static int innolux_panel_probe(struct mipi_dsi_device *dsi)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment