mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 04:38:03 +00:00
03db8f25cf
The VOP2 driver has more than one video port, hence the hard-coded port id will not work anymore. Add an extra parameter for the video port id to the rockchip_rgb_init function. Signed-off-by: Michael Riesch <michael.riesch@wolfvision.net> Reviewed-by: Sascha Hauer <s.hauer@pengutronix.de> Signed-off-by: Heiko Stuebner <heiko@sntech.de> Link: https://patchwork.freedesktop.org/patch/msgid/20230124054706.3921383-4-michael.riesch@wolfvision.net
27 lines
660 B
C
27 lines
660 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,
|
|
int video_port);
|
|
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,
|
|
int video_port)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
static inline void rockchip_rgb_fini(struct rockchip_rgb *rgb)
|
|
{
|
|
}
|
|
#endif
|