mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-19 02:04:19 +08:00
053ff09f1a
Update SPDX License Identifier from GPL-2.0+ to GPL-2.0
and drop some GPL text.
This fixes a mismatch between the existing SPDX headers and GPL
boilerplate text.
Fixes: 1f0f015151
("Add support for Rockchip Soc RGB output interface")
Cc: stable@vger.kernel.org
Reported-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Sandy Huang <hjc@rock-chips.com>
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Link: https://patchwork.freedesktop.org/patch/msgid/1548238479-171491-1-git-send-email-hjc@rock-chips.com
25 lines
606 B
C
25 lines
606 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
|
|
* Author:
|
|
* Sandy Huang <hjc@rock-chips.com>
|
|
*/
|
|
|
|
#ifdef CONFIG_ROCKCHIP_RGB
|
|
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);
|
|
#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
|