mdss: Do not wait for kickoff in display commit

Just wait for the display to idle instead and immediately start
the next commit. This reduces the depth of the commit pending
queue.

CRs-Fixed: 1081525
Change-Id: Ic4ee6f738f5fa77890e806b55d9a0304915761ea
Signed-off-by: Naseer Ahmed <naseer@codeaurora.org>
Signed-off-by: Abhijit Kulkarni <kabhijit@codeaurora.org>
This commit is contained in:
Naseer Ahmed 2016-07-11 15:48:03 -04:00 committed by Gerrit - the friendly Code Review server
parent 55e8426a19
commit acb7e2f792

View file

@ -3076,7 +3076,7 @@ static int mdss_fb_pan_display_ex(struct fb_info *info,
if (var->yoffset > (info->var.yres_virtual - info->var.yres))
return -EINVAL;
ret = mdss_fb_wait_for_kickoff(mfd);
ret = mdss_fb_pan_idle(mfd);
if (ret) {
pr_err("wait_for_kick failed. rc=%d\n", ret);
return ret;