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 v5.18 24 lines 606 B view raw
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 9struct rockchip_rgb *rockchip_rgb_init(struct device *dev, 10 struct drm_crtc *crtc, 11 struct drm_device *drm_dev); 12void rockchip_rgb_fini(struct rockchip_rgb *rgb); 13#else 14static 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 21static inline void rockchip_rgb_fini(struct rockchip_rgb *rgb) 22{ 23} 24#endif