]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
OMAPDSS: remove unneeded dss_ovl_wait_for_go()
authorTomi Valkeinen <tomi.valkeinen@ti.com>
Fri, 4 Nov 2011 11:00:10 +0000 (13:00 +0200)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Fri, 2 Dec 2011 06:54:28 +0000 (08:54 +0200)
There's an unnecessary wrapper function, dss_ovl_wait_for_go(), which
does nothing else than call dss_mgr_wait_for_go_ovl(). The
dss_ovl_wait_for_go() function can be removed.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
drivers/video/omap2/dss/overlay.c

index d15b826bf37f13a31fd6d0bddc3c35026543b77b..0ab14fa9d907fb86e2e9a03d0511aae343c3b940 100644 (file)
@@ -548,11 +548,6 @@ static void dss_ovl_get_overlay_info(struct omap_overlay *ovl,
        *info = ovl->info;
 }
 
-static int dss_ovl_wait_for_go(struct omap_overlay *ovl)
-{
-       return dss_mgr_wait_for_go_ovl(ovl);
-}
-
 static int omap_dss_set_manager(struct omap_overlay *ovl,
                struct omap_overlay_manager *mgr)
 {
@@ -689,7 +684,7 @@ void dss_init_overlays(struct platform_device *pdev)
                ovl->unset_manager = &omap_dss_unset_manager;
                ovl->set_overlay_info = &dss_ovl_set_overlay_info;
                ovl->get_overlay_info = &dss_ovl_get_overlay_info;
-               ovl->wait_for_go = &dss_ovl_wait_for_go;
+               ovl->wait_for_go = &dss_mgr_wait_for_go_ovl;
 
                ovl->caps = dss_feat_get_overlay_caps(ovl->id);
                ovl->supported_modes =