Răsfoiți Sursa

drm/tilcdc: Use tilcdc_crtc_shutdown() in tilcdc_crtc_destroy()

Use tilcdc_crtc_shutdown() instead of tilcdc_crtc_disable() in
tilcdc_crtc_destroy() and remove the modeset locking.

Signed-off-by: Jyri Sarha <jsarha@ti.com>
Jyri Sarha 8 ani în urmă
părinte
comite
ba3fd954f0
1 a modificat fișierele cu 1 adăugiri și 3 ștergeri
  1. 1 3
      drivers/gpu/drm/tilcdc/tilcdc_crtc.c

+ 1 - 3
drivers/gpu/drm/tilcdc/tilcdc_crtc.c

@@ -606,9 +606,7 @@ static void tilcdc_crtc_destroy(struct drm_crtc *crtc)
 	struct tilcdc_crtc *tilcdc_crtc = to_tilcdc_crtc(crtc);
 	struct tilcdc_drm_private *priv = crtc->dev->dev_private;
 
-	drm_modeset_lock(&crtc->mutex, NULL);
-	tilcdc_crtc_disable(crtc);
-	drm_modeset_unlock(&crtc->mutex);
+	tilcdc_crtc_shutdown(crtc);
 
 	flush_workqueue(priv->wq);