drm/omap: dss: Remove output devices list

The output devices list isn't used anymore, all output devices are
accessed through the global devices list. Remove it.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
This commit is contained in:
Laurent Pinchart
2018-03-02 01:25:32 +02:00
committed by Tomi Valkeinen
parent 3ce75d67e4
commit de57e9dbc1
12 changed files with 20 additions and 65 deletions

View File

@@ -768,12 +768,12 @@ static void venc_init_output(struct venc_device *venc)
out->ops = &venc_ops;
out->owner = THIS_MODULE;
omapdss_register_output(out);
omapdss_device_register(out);
}
static void venc_uninit_output(struct venc_device *venc)
{
omapdss_unregister_output(&venc->output);
omapdss_device_unregister(&venc->output);
}
static int venc_probe_of(struct venc_device *venc)