msm: mdss: fix for black stripe flicker in browse scroll
Fix a typo that was comparing the width instead of the height parameter that lead to black stripe flickering when scrolling on browser. Change-Id: I10e57f876458f46d445b3404d09a5e7606aeb666 Signed-off-by: Vinu Deokaran <vinud@codeaurora.org>
This commit is contained in:
parent
2eae06948f
commit
ff88d20a42
1 changed files with 1 additions and 1 deletions
|
@ -953,7 +953,7 @@ int config_ppp_scale(struct ppp_blit_op *blit_op, uint32_t *pppop_reg_ptr)
|
|||
PPP_WRITEL(phase_step_y, MDP3_PPP_SCALE_PHASEY_STEP);
|
||||
|
||||
|
||||
if (dstW > src->roi.width || dstW > src->roi.height)
|
||||
if (dstW > src->roi.width || dstH > src->roi.height)
|
||||
ppp_load_up_lut();
|
||||
|
||||
if (mdp_blur)
|
||||
|
|
Loading…
Add table
Reference in a new issue