summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/arm/malidp_drv.c
diff options
context:
space:
mode:
authorBrian Starkey2016-10-24 15:55:17 +0200
committerLiviu Dudau2016-11-04 18:10:10 +0100
commitfe37ed6a2dd63b5cc945b6b354c02b58473c0abf (patch)
tree6f0b51625bb43264c2d0b8bcfba30fc54ebbbd65 /drivers/gpu/drm/arm/malidp_drv.c
parentdrm: mali-dp: Store internal format and n_planes in plane state (diff)
downloadkernel-qcow2-linux-fe37ed6a2dd63b5cc945b6b354c02b58473c0abf.tar.gz
kernel-qcow2-linux-fe37ed6a2dd63b5cc945b6b354c02b58473c0abf.tar.xz
kernel-qcow2-linux-fe37ed6a2dd63b5cc945b6b354c02b58473c0abf.zip
drm: mali-dp: Don't set DRM_PLANE_COMMIT_ACTIVE_ONLY
We need to explicitly disable our planes, so don't set the flag which would otherwise skip the plane disable when the CRTC is disabled. Signed-off-by: Brian Starkey <brian.starkey@arm.com> Acked-by: Liviu Dudau <Liviu.Dudau@arm.com> Signed-off-by: Liviu Dudau <Liviu.Dudau@arm.com>
Diffstat (limited to 'drivers/gpu/drm/arm/malidp_drv.c')
-rw-r--r--drivers/gpu/drm/arm/malidp_drv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/arm/malidp_drv.c b/drivers/gpu/drm/arm/malidp_drv.c
index 9bd6b072a405..6cbf4fa90ea0 100644
--- a/drivers/gpu/drm/arm/malidp_drv.c
+++ b/drivers/gpu/drm/arm/malidp_drv.c
@@ -92,8 +92,7 @@ static void malidp_atomic_commit_tail(struct drm_atomic_state *state)
drm_atomic_helper_commit_modeset_disables(drm, state);
drm_atomic_helper_commit_modeset_enables(drm, state);
- drm_atomic_helper_commit_planes(drm, state,
- DRM_PLANE_COMMIT_ACTIVE_ONLY);
+ drm_atomic_helper_commit_planes(drm, state, 0);
malidp_atomic_commit_hw_done(state);