Merge tag 'io_uring-5.11-2021-01-16' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / drivers / gpu / drm / omapdrm / omap_plane.h
blob0c28fe8ffa20635c431669a158200eb369ceed3b
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * omap_plane.h -- OMAP DRM Plane
5 * Copyright (C) 2011 Texas Instruments
6 * Author: Rob Clark <rob@ti.com>
7 */
9 #ifndef __OMAPDRM_PLANE_H__
10 #define __OMAPDRM_PLANE_H__
12 #include <linux/types.h>
14 enum drm_plane_type;
16 struct drm_device;
17 struct drm_mode_object;
18 struct drm_plane;
20 struct drm_plane *omap_plane_init(struct drm_device *dev,
21 int idx, enum drm_plane_type type,
22 u32 possible_crtcs);
23 void omap_plane_install_properties(struct drm_plane *plane,
24 struct drm_mode_object *obj);
26 #endif /* __OMAPDRM_PLANE_H__ */