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: Jeykumar Sankaran <jsanka@codeaurora.org>
Signed-off-by: Sandeep Panda <spanda@codeaurora.org>
Signed-off-by: Kuogee Hsieh <khsieh@codeaurora.org>
This commit is contained in:
Jeykumar Sankaran 2015-05-19 18:22:00 -07:00 committed by David Keitel
parent 6616ee692a
commit 4e60bcd430

View file

@ -1571,8 +1571,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];