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>
This commit is contained in:
Terence Hampson 2015-04-01 15:06:57 -04:00 committed by David Keitel
parent 9b6879fe6c
commit 0ec6775a89

View file

@ -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)