From 4eaa6dd39ecb9a7c80d32afb816d064c00b5c696 Mon Sep 17 00:00:00 2001 From: Amine Najahi Date: Tue, 18 Aug 2020 07:25:43 -0400 Subject: [PATCH] disp: msm: sde: fix index variable used in CP pu check phase Currently driver uses wrong index to retrieve partial update ROI during check phase. This can lead to ROI being 0 for some of the CP properties. Change-Id: I885132e8d29eaf1353ed079eb283f7ca3a3d63a6 Signed-off-by: Amine Najahi --- msm/sde/sde_color_processing.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/msm/sde/sde_color_processing.c b/msm/sde/sde_color_processing.c index e71a5923..3142599c 100644 --- a/msm/sde/sde_color_processing.c +++ b/msm/sde/sde_color_processing.c @@ -1744,8 +1744,8 @@ static int sde_cp_crtc_check_pu_features(struct drm_crtc *crtc) hw_cfg.mixer_info = sde_crtc->mixers[j].hw_lm; hw_cfg.ctl = sde_crtc->mixers[j].hw_ctl; hw_cfg.displayh = hw_cfg.num_of_mixers * - sde_crtc_state->lm_roi[i].w; - hw_cfg.displayv = sde_crtc_state->lm_roi[i].h; + sde_crtc_state->lm_roi[j].w; + hw_cfg.displayv = sde_crtc_state->lm_roi[j].h; ret = check_pu_feature(hw_dspp, &hw_cfg, sde_crtc); if (ret) {