[media] v4l2: replace enum_mbus_fmt by enum_mbus_code
Replace all calls to the enum_mbus_fmt video op by the pad enum_mbus_code op and remove the duplicate video op. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Acked-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Acked-by: Scott Jiang <scott.jiang.linux@gmail.com> Cc: Jonathan Corbet <corbet@lwn.net> Cc: Kamil Debski <k.debski@samsung.com> Acked-by: Prabhakar Lad <prabhakar.csengg@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:

committed by
Mauro Carvalho Chehab

parent
90874cd61d
commit
ebcff5fce6
@@ -420,13 +420,14 @@ static int adv7183_g_input_status(struct v4l2_subdev *sd, u32 *status)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int adv7183_enum_mbus_fmt(struct v4l2_subdev *sd, unsigned index,
|
||||
u32 *code)
|
||||
static int adv7183_enum_mbus_code(struct v4l2_subdev *sd,
|
||||
struct v4l2_subdev_pad_config *cfg,
|
||||
struct v4l2_subdev_mbus_code_enum *code)
|
||||
{
|
||||
if (index > 0)
|
||||
if (code->pad || code->index > 0)
|
||||
return -EINVAL;
|
||||
|
||||
*code = MEDIA_BUS_FMT_UYVY8_2X8;
|
||||
code->code = MEDIA_BUS_FMT_UYVY8_2X8;
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -514,16 +515,20 @@ static const struct v4l2_subdev_video_ops adv7183_video_ops = {
|
||||
.s_routing = adv7183_s_routing,
|
||||
.querystd = adv7183_querystd,
|
||||
.g_input_status = adv7183_g_input_status,
|
||||
.enum_mbus_fmt = adv7183_enum_mbus_fmt,
|
||||
.try_mbus_fmt = adv7183_try_mbus_fmt,
|
||||
.s_mbus_fmt = adv7183_s_mbus_fmt,
|
||||
.g_mbus_fmt = adv7183_g_mbus_fmt,
|
||||
.s_stream = adv7183_s_stream,
|
||||
};
|
||||
|
||||
static const struct v4l2_subdev_pad_ops adv7183_pad_ops = {
|
||||
.enum_mbus_code = adv7183_enum_mbus_code,
|
||||
};
|
||||
|
||||
static const struct v4l2_subdev_ops adv7183_ops = {
|
||||
.core = &adv7183_core_ops,
|
||||
.video = &adv7183_video_ops,
|
||||
.pad = &adv7183_pad_ops,
|
||||
};
|
||||
|
||||
static int adv7183_probe(struct i2c_client *client,
|
||||
|
Reference in New Issue
Block a user