drm/mediatek: mtk_dsi: Remove spurious drm_connector_unregister
Connectors are unregistered by mtk_drm_drv via drm_connector_unregister_all(). Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
This commit is contained in:
parent
515ba6a59c
commit
2ea9f31799
|
@ -695,10 +695,8 @@ static void mtk_dsi_destroy_conn_enc(struct mtk_dsi *dsi)
|
||||||
{
|
{
|
||||||
drm_encoder_cleanup(&dsi->encoder);
|
drm_encoder_cleanup(&dsi->encoder);
|
||||||
/* Skip connector cleanup if creation was delegated to the bridge */
|
/* Skip connector cleanup if creation was delegated to the bridge */
|
||||||
if (dsi->conn.dev) {
|
if (dsi->conn.dev)
|
||||||
drm_connector_unregister(&dsi->conn);
|
|
||||||
drm_connector_cleanup(&dsi->conn);
|
drm_connector_cleanup(&dsi->conn);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void mtk_dsi_ddp_start(struct mtk_ddp_comp *comp)
|
static void mtk_dsi_ddp_start(struct mtk_ddp_comp *comp)
|
||||||
|
|
Loading…
Reference in New Issue