Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 88dd7ad6 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "drm/msm/sde: add parentheses for inline kickoff"

parents d1588409 7327aa2f
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -2805,9 +2805,11 @@ void sde_crtc_commit_kickoff(struct drm_crtc *crtc)
	}
	sde_crtc->play_count++;

	if (cstate->sbuf_cfg.rot_op_mode != SDE_CTL_ROT_OP_MODE_OFFLINE)
		drm_atomic_crtc_for_each_plane(plane, crtc)
	if (cstate->sbuf_cfg.rot_op_mode != SDE_CTL_ROT_OP_MODE_OFFLINE) {
		drm_atomic_crtc_for_each_plane(plane, crtc) {
			sde_plane_kickoff(plane);
		}
	}

	for (i = 0; i < sde_crtc->num_mixers; i++) {
		ctl = sde_crtc->mixers[i].hw_ctl;