xref: /linux/drivers/gpu/drm/renesas/shmobile/shmob_drm_plane.h (revision c532de5a67a70f8533d495f8f2aaa9a0491c3ad0)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * shmob_drm_plane.h  --  SH Mobile DRM Planes
4  *
5  * Copyright (C) 2012 Renesas Electronics Corporation
6  *
7  * Laurent Pinchart (laurent.pinchart@ideasonboard.com)
8  */
9 
10 #ifndef __SHMOB_DRM_PLANE_H__
11 #define __SHMOB_DRM_PLANE_H__
12 
13 struct drm_plane;
14 struct shmob_drm_device;
15 
16 struct drm_plane *shmob_drm_plane_create(struct shmob_drm_device *sdev,
17 					 enum drm_plane_type type,
18 					 unsigned int index);
19 
20 #endif /* __SHMOB_DRM_PLANE_H__ */
21