diff options
| author | Jeevan Shriram <jshriram@codeaurora.org> | 2015-08-10 17:25:42 -0700 |
|---|---|---|
| committer | David Keitel <dkeitel@codeaurora.org> | 2016-03-23 20:44:59 -0700 |
| commit | 9f9928018fb4a8d1441f6804f0c69cc45be863df (patch) | |
| tree | dbdae68e63344e9ade37adc538b738c1d31d3e9f | |
| parent | ed00b9f28486dd1c91332a47d834bf2467355781 (diff) | |
msm: mdss: clear the pipe's dirty flag after sspp configuration
In the current implementation, pipe's dirty flag is not cleared when
there is pipe reuse. This change clears the pipe's dirty flag if the
pipe is being reused with no configuration changes but only buffer
handle.
CRs-Fixed: 884773
Change-Id: I8d62e944110cd887f341dd8b33a642a679473ff7
Signed-off-by: Jeevan Shriram <jshriram@codeaurora.org>
| -rw-r--r-- | drivers/video/fbdev/msm/mdss_mdp_layer.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/fbdev/msm/mdss_mdp_layer.c b/drivers/video/fbdev/msm/mdss_mdp_layer.c index 55b8aa0089b9..7729a51f2541 100644 --- a/drivers/video/fbdev/msm/mdss_mdp_layer.c +++ b/drivers/video/fbdev/msm/mdss_mdp_layer.c @@ -1176,6 +1176,7 @@ static int __validate_layers(struct msm_fb_data_type *mfd, else pipe->params_changed++; } + pipe->dirty = false; continue; } |
