brintos

brintos / linux-shallow public Read only

0
0
Text · 638 B · a9a33e1 Raw
28 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * omap_plane.h -- OMAP DRM Plane4 *5 * Copyright (C) 2011 Texas Instruments6 * Author: Rob Clark <rob@ti.com>7 */8 9#ifndef __OMAPDRM_PLANE_H__10#define __OMAPDRM_PLANE_H__11 12#include <linux/types.h>13 14enum drm_plane_type;15 16struct drm_device;17struct drm_mode_object;18struct drm_plane;19 20struct drm_plane *omap_plane_init(struct drm_device *dev,21		int idx, enum drm_plane_type type,22		u32 possible_crtcs);23void omap_plane_install_properties(struct drm_plane *plane,24		struct drm_mode_object *obj);25bool is_omap_plane_dual_overlay(struct drm_plane_state *state);26 27#endif /* __OMAPDRM_PLANE_H__ */28