2019-01-23 10:14:39 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2018-08-30 21:12:06 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
|
|
|
|
* Author:
|
|
|
|
* Sandy Huang <hjc@rock-chips.com>
|
|
|
|
*/
|
|
|
|
|
2018-09-05 19:13:02 +00:00
|
|
|
#ifdef CONFIG_ROCKCHIP_RGB
|
2018-08-30 21:12:06 +00:00
|
|
|
struct rockchip_rgb *rockchip_rgb_init(struct device *dev,
|
|
|
|
struct drm_crtc *crtc,
|
|
|
|
struct drm_device *drm_dev);
|
|
|
|
void rockchip_rgb_fini(struct rockchip_rgb *rgb);
|
2018-09-05 19:13:02 +00:00
|
|
|
#else
|
|
|
|
static inline struct rockchip_rgb *rockchip_rgb_init(struct device *dev,
|
|
|
|
struct drm_crtc *crtc,
|
|
|
|
struct drm_device *drm_dev)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void rockchip_rgb_fini(struct rockchip_rgb *rgb)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|