aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/drm/arm/malidp_crtc.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/gpu/drm/arm/malidp_crtc.c b/drivers/gpu/drm/arm/malidp_crtc.c
index 153a49670626..904fff80917b 100644
--- a/drivers/gpu/drm/arm/malidp_crtc.c
+++ b/drivers/gpu/drm/arm/malidp_crtc.c
@@ -77,6 +77,9 @@ static void malidp_crtc_atomic_disable(struct drm_crtc *crtc,
77 struct malidp_hw_device *hwdev = malidp->dev; 77 struct malidp_hw_device *hwdev = malidp->dev;
78 int err; 78 int err;
79 79
80 /* always disable planes on the CRTC that is being turned off */
81 drm_atomic_helper_disable_planes_on_crtc(old_state, false);
82
80 drm_crtc_vblank_off(crtc); 83 drm_crtc_vblank_off(crtc);
81 hwdev->hw->enter_config_mode(hwdev); 84 hwdev->hw->enter_config_mode(hwdev);
82 85