Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.17-rc6 19 lines 502 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * Copyright (C) STMicroelectronics SA 2014 4 * 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 14struct drm_plane *sti_gdp_create(struct drm_device *drm_dev, 15 struct device *dev, int desc, 16 void __iomem *baseaddr, 17 unsigned int possible_crtcs, 18 enum drm_plane_type type); 19#endif