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

Commit 5547270d authored by Jeykumar Sankaran's avatar Jeykumar Sankaran Committed by Kuogee Hsieh
Browse files

msm: mdss: Fix DSI ROI alignment read during DSI probe



Fixes a bug in reading the DSI ROI alignment values as per the
property description.

Change-Id: Ieffa48891f4f9219951b6e90009369db993791a7
Signed-off-by: default avatarJeykumar Sankaran <jsanka@codeaurora.org>
Signed-off-by: default avatarSandeep Panda <spanda@codeaurora.org>
Signed-off-by: default avatarKuogee Hsieh <khsieh@codeaurora.org>
parent 35afb780
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1401,8 +1401,8 @@ static void mdss_dsi_parse_roi_alignment(struct device_node *np,
					__func__);
		else {
			pinfo->xstart_pix_align = value[0];
			pinfo->width_pix_align = value[1];
			pinfo->ystart_pix_align = value[2];
			pinfo->ystart_pix_align = value[1];
			pinfo->width_pix_align = value[2];
			pinfo->height_pix_align = value[3];
			pinfo->min_width = value[4];
			pinfo->min_height = value[5];