msm: mdss: disable continuous splash for slave control

Continuous splash screen needs to be disabled for the slave control
as well after handoff. In the case of pingpong split, there is no
secondary control and needs to be disabled for the next pointer.
This change handles disabling continuous splash screen for slave
control for command mode interface.

Change-Id: I8897a00fc54f71698467fa9c63dca0c2746230d0
Signed-off-by: Jeevan Shriram <jshriram@codeaurora.org>
This commit is contained in:
Jeevan Shriram 2015-01-20 11:09:29 -08:00 committed by David Keitel
parent 7d4071a7fe
commit de2c65cd7b

View file

@ -580,6 +580,8 @@ int mdss_mdp_cmd_reconfigure_splash_done(struct mdss_mdp_ctl *ctl, bool handoff)
pdata->panel_info.cont_splash_enabled = 0; pdata->panel_info.cont_splash_enabled = 0;
if (sctl) if (sctl)
sctl->panel_data->panel_info.cont_splash_enabled = 0; sctl->panel_data->panel_info.cont_splash_enabled = 0;
else if (pdata->next && is_pingpong_split(ctl->mfd))
pdata->next->panel_info.cont_splash_enabled = 0;
return ret; return ret;
} }