diff options
| author | Vinu Deokaran <vinud@codeaurora.org> | 2014-10-14 12:03:46 -0400 |
|---|---|---|
| committer | David Keitel <dkeitel@codeaurora.org> | 2016-03-23 20:35:25 -0700 |
| commit | ff88d20a42bae9a691997fe31d930c5fd1d666e5 (patch) | |
| tree | 578e1936d7010b7396e13dbbbd6d5615a2564166 | |
| parent | 2eae06948f4d3989ea4c7062fdccca014bd6eecb (diff) | |
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>
| -rw-r--r-- | drivers/video/fbdev/msm/mdp3_ppp_hwio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/msm/mdp3_ppp_hwio.c b/drivers/video/fbdev/msm/mdp3_ppp_hwio.c index a25c2c79e9e3..8c5d77121ea5 100644 --- a/drivers/video/fbdev/msm/mdp3_ppp_hwio.c +++ b/drivers/video/fbdev/msm/mdp3_ppp_hwio.c @@ -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) |
