summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTerence Hampson <thampson@codeaurora.org>2015-04-01 15:06:57 -0400
committerDavid Keitel <dkeitel@codeaurora.org>2016-03-23 20:40:12 -0700
commit0ec6775a899e3fc78c694270fa32cde9f47574c2 (patch)
treee32494eb8272f3b956b9c3e066c5d3a2c2c26c31
parent9b6879fe6cf44b5560e126877ddf133d0f049dbe (diff)
mdss: mdp: assign left mixer to pipe in pipe_assign
When pipe_assign calls pipe_init_config it determines if the pipe is for use by real time client based on info pipes left mixer. This value was not properly assigned prior to this call. Change-Id: If5edf449b8e501f9400d81477fcc12a8285e1172 Signed-off-by: Terence Hampson <thampson@codeaurora.org>
-rw-r--r--drivers/video/fbdev/msm/mdss_mdp_pipe.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/fbdev/msm/mdss_mdp_pipe.c b/drivers/video/fbdev/msm/mdss_mdp_pipe.c
index bfa9cd857473..becfc0462050 100644
--- a/drivers/video/fbdev/msm/mdss_mdp_pipe.c
+++ b/drivers/video/fbdev/msm/mdss_mdp_pipe.c
@@ -1124,6 +1124,7 @@ struct mdss_mdp_pipe *mdss_mdp_pipe_assign(struct mdss_data_type *mdata,
pipe = ERR_PTR(-EBUSY);
goto error;
}
+ pipe->mixer_left = mixer;
rc = mdss_mdp_pipe_init_config(pipe, mixer, false);
if (rc)