Lines Matching refs:plane
135 struct drm_plane *plane; in omap_modeset_create_crtc() local
138 plane = omap_plane_init(dev, id, DRM_PLANE_TYPE_PRIMARY); in omap_modeset_create_crtc()
139 if (IS_ERR(plane)) in omap_modeset_create_crtc()
140 return PTR_ERR(plane); in omap_modeset_create_crtc()
142 crtc = omap_crtc_init(dev, plane, channel, id); in omap_modeset_create_crtc()
148 priv->planes[id] = plane; in omap_modeset_create_crtc()
278 struct drm_plane *plane; in omap_modeset_init() local
280 plane = omap_plane_init(dev, id, DRM_PLANE_TYPE_OVERLAY); in omap_modeset_init()
281 if (IS_ERR(plane)) in omap_modeset_init()
282 return PTR_ERR(plane); in omap_modeset_init()
285 priv->planes[priv->num_planes++] = plane; in omap_modeset_init()