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:
parent
6616ee692a
commit
4e60bcd430
1 changed files with 2 additions and 2 deletions
|
@ -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];
|
||||
|
|
Loading…
Add table
Reference in a new issue