media: i2c: ov2718 fix compile error

Signed-off-by: Zefa Chen <zefa.chen@rock-chips.com>
Change-Id: Ib3eee457614461400603df9c6972799fafa15254
This commit is contained in:
Zefa Chen
2021-09-08 18:20:18 +08:00
parent 07d6f292b6
commit 67a0f5ecfa
3 changed files with 16 additions and 3 deletions

View File

@@ -1125,6 +1125,18 @@ config VIDEO_OV2685
To compile this driver as a module, choose M here: the
module will be called ov2685.
config VIDEO_OV2718
tristate "OmniVision OV2718 sensor support"
depends on VIDEO_V4L2 && I2C && MEDIA_CONTROLLER
depends on MEDIA_CAMERA_SUPPORT
select V4L2_FWNODE
help
This is a Video4Linux2 sensor driver for the OmniVision
OV2718 camera.
To compile this driver as a module, choose M here: the
module will be called ov2718.
config VIDEO_OV2740
tristate "OmniVision OV2740 sensor support"
depends on VIDEO_V4L2 && I2C

View File

@@ -72,6 +72,7 @@ obj-$(CONFIG_VIDEO_OV02K10) += ov02k10.o
obj-$(CONFIG_VIDEO_OV2640) += ov2640.o
obj-$(CONFIG_VIDEO_OV2680) += ov2680.o
obj-$(CONFIG_VIDEO_OV2685) += ov2685.o
obj-$(CONFIG_VIDEO_OV2718) += ov2718.o
obj-$(CONFIG_VIDEO_OV2740) += ov2740.o
obj-$(CONFIG_VIDEO_OV5640) += ov5640.o
obj-$(CONFIG_VIDEO_OV5645) += ov5645.o

View File

@@ -7998,7 +7998,7 @@ static void ov2718_get_hcg_reg(u32 gain, u32 *again_reg, u32 *dgain_reg)
}
}
static int ov2718_g_mbus_config(struct v4l2_subdev *sd,
static int ov2718_g_mbus_config(struct v4l2_subdev *sd, unsigned int pad_id,
struct v4l2_mbus_config *config)
{
struct ov2718 *ov2718 = to_ov2718(sd);
@@ -8015,7 +8015,7 @@ static int ov2718_g_mbus_config(struct v4l2_subdev *sd,
V4L2_MBUS_CSI2_CONTINUOUS_CLOCK |
V4L2_MBUS_CSI2_CHANNEL_1;
config->type = V4L2_MBUS_CSI2;
config->type = V4L2_MBUS_CSI2_DPHY;
config->flags = val;
return 0;
@@ -8572,7 +8572,6 @@ static const struct v4l2_subdev_internal_ops ov2718_internal_ops = {
static const struct v4l2_subdev_video_ops ov2718_video_ops = {
.s_stream = ov2718_s_stream,
.g_frame_interval = ov2718_g_frame_interval,
.g_mbus_config = ov2718_g_mbus_config,
};
static const struct v4l2_subdev_pad_ops ov2718_pad_ops = {
@@ -8581,6 +8580,7 @@ static const struct v4l2_subdev_pad_ops ov2718_pad_ops = {
.enum_frame_interval = ov2718_enum_frame_interval,
.get_fmt = ov2718_get_fmt,
.set_fmt = ov2718_set_fmt,
.get_mbus_config = ov2718_g_mbus_config,
};
static const struct v4l2_subdev_core_ops ov2718_core_ops = {