drm/omap: remove crtc->mgr field
authorTomi Valkeinen <tomi.valkeinen@ti.com>
Wed, 21 Oct 2015 13:34:08 +0000 (16:34 +0300)
committerTomi Valkeinen <tomi.valkeinen@ti.com>
Thu, 3 Mar 2016 15:38:22 +0000 (17:38 +0200)
commit3a9241386494ed5797e4c7244b944ac312d35515
treeeee51e4133c4b68c8725a16e81556527d3091f6f
parent7b9cb5eeb4d0b1db63e198dfd02aadddaf245de4
drm/omap: remove crtc->mgr field

In order to remove uses of 'struct omap_overlay_manager' from omapdrm,
this patch removes the crtc->mgr field.

To accomplish that, a new static array is added along the current
'omap_crtcs' static array, which is used to store the output device
connected to a crtc.

Optimally we'd use the struct omap_crtc to store this information, but
at the time when omap_crtc_dss_connect() is called, we don't yet have
the omap_crtc instances. This might possibly be fixed later, but for now
the static array does the job.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
drivers/gpu/drm/omapdrm/omap_crtc.c