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

Commit 5b176bf4 authored by Xu Yang's avatar Xu Yang Committed by Gerrit - the friendly Code Review server
Browse files

drm: msm: Do not check for 0 mixer count

The first frame may not have the mixer setup, but the properties
can be applied later on.

Change-Id: Ic21d751ee7b5375ed49bacb481d8f34875bf0190
parent b69f6916
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1453,8 +1453,7 @@ int sde_cp_crtc_set_property(struct drm_crtc *crtc,
	 * crtc. Check LM and dspp counts based on whether feature is a
	 * dspp/lm feature.
	 */
	if (!sde_crtc->num_mixers ||
	    sde_crtc->num_mixers > ARRAY_SIZE(sde_crtc->mixers)) {
	if (sde_crtc->num_mixers > ARRAY_SIZE(sde_crtc->mixers)) {
		DRM_INFO("Invalid mixer config act cnt %d max cnt %ld\n",
			sde_crtc->num_mixers,
				(long)ARRAY_SIZE(sde_crtc->mixers));