2017-12-06 19:29:47 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2014-12-11 20:34:42 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) STMicroelectronics SA 2013
|
|
|
|
* Authors: Vincent Abriou <vincent.abriou@st.com> for STMicroelectronics.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _STI_CURSOR_H_
|
|
|
|
#define _STI_CURSOR_H_
|
|
|
|
|
2019-06-05 21:48:35 +08:00
|
|
|
struct drm_device;
|
|
|
|
struct device;
|
|
|
|
|
2015-08-03 20:22:16 +08:00
|
|
|
struct drm_plane *sti_cursor_create(struct drm_device *drm_dev,
|
|
|
|
struct device *dev, int desc,
|
|
|
|
void __iomem *baseaddr,
|
|
|
|
unsigned int possible_crtcs);
|
2014-12-11 20:34:42 +08:00
|
|
|
|
|
|
|
#endif
|