drm/omap: convert dss_mgr_set_timings to accept omap_channel

We are removing uses of 'struct omap_overlay_manager'. This patch
changes dss_mgr_set_timings() to accept 'enum omap_channel' instead of
'struct omap_overlay_manager'.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
Tomi Valkeinen
2015-11-04 20:25:05 +02:00
parent bdac3bb946
commit 5c6ff3cd45
8 changed files with 10 additions and 10 deletions

View File

@@ -202,10 +202,10 @@ void dss_mgr_disconnect(enum omap_channel channel,
}
EXPORT_SYMBOL(dss_mgr_disconnect);
void dss_mgr_set_timings(struct omap_overlay_manager *mgr,
void dss_mgr_set_timings(enum omap_channel channel,
const struct omap_video_timings *timings)
{
dss_mgr_ops->set_timings(mgr->id, timings);
dss_mgr_ops->set_timings(channel, timings);
}
EXPORT_SYMBOL(dss_mgr_set_timings);