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

Commit 76c9d188 authored by Alan Kwong's avatar Alan Kwong
Browse files

drm/msm: update reset value of rotation property to zero



The reset value is currently set to rotate_0, which is not
one of the support values of default sde plane property.
Correct the reset value of plane rotation property to 0
to match property convention.

CRs-Fixed: 2009714
Change-Id: I1eeea0426237e38b4d1d5eb07b4a4522f5179336
Signed-off-by: default avatarAlan Kwong <akwong@codeaurora.org>
parent 5a50a4a4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -722,7 +722,7 @@ static int msm_disable_all_modes_commit(
			goto fail;
		}

		plane_state->rotation = DRM_ROTATE_0;
		plane_state->rotation = 0;

		plane->old_fb = plane->fb;
		plane_mask |= 1 << drm_plane_index(plane);