OMAPDSS: cleanup dss_recheck_connections
dss_recheck_connections is quite a mess. With the previous commit that initializes the channel field for HDMI and VENC displays, we can greatly simplify the dss_recheck_connections. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
parent
47eb6763ff
commit
6b41785836
1 changed files with 6 additions and 43 deletions
|
@ -109,52 +109,15 @@ void dss_init_overlays(struct platform_device *pdev)
|
||||||
* selected, connect always. */
|
* selected, connect always. */
|
||||||
void dss_recheck_connections(struct omap_dss_device *dssdev, bool force)
|
void dss_recheck_connections(struct omap_dss_device *dssdev, bool force)
|
||||||
{
|
{
|
||||||
int i;
|
|
||||||
struct omap_overlay_manager *lcd_mgr;
|
|
||||||
struct omap_overlay_manager *tv_mgr;
|
|
||||||
struct omap_overlay_manager *lcd2_mgr = NULL;
|
|
||||||
struct omap_overlay_manager *lcd3_mgr = NULL;
|
|
||||||
struct omap_overlay_manager *mgr = NULL;
|
struct omap_overlay_manager *mgr = NULL;
|
||||||
|
int i;
|
||||||
|
|
||||||
lcd_mgr = omap_dss_get_overlay_manager(OMAP_DSS_CHANNEL_LCD);
|
mgr = omap_dss_get_overlay_manager(dssdev->channel);
|
||||||
tv_mgr = omap_dss_get_overlay_manager(OMAP_DSS_CHANNEL_DIGIT);
|
|
||||||
if (dss_has_feature(FEAT_MGR_LCD3))
|
|
||||||
lcd3_mgr = omap_dss_get_overlay_manager(OMAP_DSS_CHANNEL_LCD3);
|
|
||||||
if (dss_has_feature(FEAT_MGR_LCD2))
|
|
||||||
lcd2_mgr = omap_dss_get_overlay_manager(OMAP_DSS_CHANNEL_LCD2);
|
|
||||||
|
|
||||||
if (dssdev->channel == OMAP_DSS_CHANNEL_LCD3) {
|
if (!mgr->device || force) {
|
||||||
if (!lcd3_mgr->device || force) {
|
if (mgr->device)
|
||||||
if (lcd3_mgr->device)
|
mgr->unset_device(mgr);
|
||||||
lcd3_mgr->unset_device(lcd3_mgr);
|
mgr->set_device(mgr, dssdev);
|
||||||
lcd3_mgr->set_device(lcd3_mgr, dssdev);
|
|
||||||
mgr = lcd3_mgr;
|
|
||||||
}
|
|
||||||
} else if (dssdev->channel == OMAP_DSS_CHANNEL_LCD2) {
|
|
||||||
if (!lcd2_mgr->device || force) {
|
|
||||||
if (lcd2_mgr->device)
|
|
||||||
lcd2_mgr->unset_device(lcd2_mgr);
|
|
||||||
lcd2_mgr->set_device(lcd2_mgr, dssdev);
|
|
||||||
mgr = lcd2_mgr;
|
|
||||||
}
|
|
||||||
} else if (dssdev->type != OMAP_DISPLAY_TYPE_VENC
|
|
||||||
&& dssdev->type != OMAP_DISPLAY_TYPE_HDMI) {
|
|
||||||
if (!lcd_mgr->device || force) {
|
|
||||||
if (lcd_mgr->device)
|
|
||||||
lcd_mgr->unset_device(lcd_mgr);
|
|
||||||
lcd_mgr->set_device(lcd_mgr, dssdev);
|
|
||||||
mgr = lcd_mgr;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (dssdev->type == OMAP_DISPLAY_TYPE_VENC
|
|
||||||
|| dssdev->type == OMAP_DISPLAY_TYPE_HDMI) {
|
|
||||||
if (!tv_mgr->device || force) {
|
|
||||||
if (tv_mgr->device)
|
|
||||||
tv_mgr->unset_device(tv_mgr);
|
|
||||||
tv_mgr->set_device(tv_mgr, dssdev);
|
|
||||||
mgr = tv_mgr;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mgr) {
|
if (mgr) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue