Merge tag 'char-misc-5.13-rc1-round2' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-microblaze.git] / drivers / gpu / drm / rockchip / rockchip_rgb.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
4  * Author:
5  *      Sandy Huang <hjc@rock-chips.com>
6  */
7
8 #ifdef CONFIG_ROCKCHIP_RGB
9 struct rockchip_rgb *rockchip_rgb_init(struct device *dev,
10                                        struct drm_crtc *crtc,
11                                        struct drm_device *drm_dev);
12 void rockchip_rgb_fini(struct rockchip_rgb *rgb);
13 #else
14 static inline struct rockchip_rgb *rockchip_rgb_init(struct device *dev,
15                                                      struct drm_crtc *crtc,
16                                                      struct drm_device *drm_dev)
17 {
18         return NULL;
19 }
20
21 static inline void rockchip_rgb_fini(struct rockchip_rgb *rgb)
22 {
23 }
24 #endif