brintos

brintos / linux-shallow public Read only

0
0
Text · 565 B · deb07e3 Raw
25 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * Copyright (C) STMicroelectronics SA 20144 * Authors: Benjamin Gaignard <benjamin.gaignard@st.com>5 *          Fabien Dessenne <fabien.dessenne@st.com>6 *          for STMicroelectronics.7 */8 9#ifndef _STI_GDP_H_10#define _STI_GDP_H_11 12#include <linux/types.h>13 14#include <drm/drm_plane.h>15 16struct drm_device;17struct device;18 19struct drm_plane *sti_gdp_create(struct drm_device *drm_dev,20				 struct device *dev, int desc,21				 void __iomem *baseaddr,22				 unsigned int possible_crtcs,23				 enum drm_plane_type type);24#endif25