Skip to content

Commit

Permalink
drm: mali-dp: Don't set DRM_PLANE_COMMIT_ACTIVE_ONLY
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Brian Starkey authored and Liviu Dudau committed Nov 4, 2016
1 parent 70c94a3 commit fe37ed6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/gpu/drm/arm/malidp_drv.c
Original file line number Diff line number Diff line change
@@ -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);

0 comments on commit fe37ed6

Please sign in to comment.