diff options
| author | Jayant Shekhar <jshekhar@codeaurora.org> | 2015-12-17 10:24:48 +0530 |
|---|---|---|
| committer | David Keitel <dkeitel@codeaurora.org> | 2016-03-23 21:14:20 -0700 |
| commit | 298f31ae467bec52ace99ea935160cfc8b1d3dcd (patch) | |
| tree | f122edaafa9bf446fb1c2a3e9b603b8f8fa67471 | |
| parent | 3fd9638f272f737535e5e4c400d2b2fac09dcbc3 (diff) | |
msm: mdss: Remove redundant handoff pending check
In overlay start, currently there is a check that if
splash handoff is pending then fail the overlay start
for that particular fb. Remove this check as this is
not required anymore. HAL should take care that it
calls fb open (for HDMI) only after splash cleanup is
done.
Change-Id: Ie20bd778ba8df2bd54c3804870ad4e8bb45702b8
Signed-off-by: Jayant Shekhar <jshekhar@codeaurora.org>
| -rw-r--r-- | drivers/video/fbdev/msm/mdss_mdp_overlay.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/video/fbdev/msm/mdss_mdp_overlay.c b/drivers/video/fbdev/msm/mdss_mdp_overlay.c index 3a95fa9053e6..c2d5ec1106f5 100644 --- a/drivers/video/fbdev/msm/mdss_mdp_overlay.c +++ b/drivers/video/fbdev/msm/mdss_mdp_overlay.c @@ -1328,10 +1328,6 @@ int mdss_mdp_overlay_start(struct msm_fb_data_type *mfd) mfd->index); return 0; } - } else if (mdata->handoff_pending) { - pr_warn("fb%d: commit while splash handoff pending\n", - mfd->index); - return -EPERM; } pr_debug("starting fb%d overlay\n", mfd->index); |
