forked from Minki/linux
[media] media: davinci: vpif: Switch to pad-level DV operations
The video-level enum_dv_timings and dv_timings_cap operations are deprecated in favor of the pad-level versions. All subdev drivers implement the pad-level versions, switch to them. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Hans Verkuil <hans.verkuil@cisco.com> Acked-by: Lad, Prabhakar <prabhakar.csengg@gmail.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
parent
f1f8e4348d
commit
10d2146dbe
@ -1172,7 +1172,9 @@ vpif_enum_dv_timings(struct file *file, void *priv,
|
||||
if (input.capabilities != V4L2_IN_CAP_DV_TIMINGS)
|
||||
return -ENODATA;
|
||||
|
||||
ret = v4l2_subdev_call(ch->sd, video, enum_dv_timings, timings);
|
||||
timings->pad = 0;
|
||||
|
||||
ret = v4l2_subdev_call(ch->sd, pad, enum_dv_timings, timings);
|
||||
if (ret == -ENOIOCTLCMD || ret == -ENODEV)
|
||||
return -EINVAL;
|
||||
|
||||
|
@ -897,7 +897,9 @@ vpif_enum_dv_timings(struct file *file, void *priv,
|
||||
if (output.capabilities != V4L2_OUT_CAP_DV_TIMINGS)
|
||||
return -ENODATA;
|
||||
|
||||
ret = v4l2_subdev_call(ch->sd, video, enum_dv_timings, timings);
|
||||
timings->pad = 0;
|
||||
|
||||
ret = v4l2_subdev_call(ch->sd, pad, enum_dv_timings, timings);
|
||||
if (ret == -ENOIOCTLCMD || ret == -ENODEV)
|
||||
return -EINVAL;
|
||||
return ret;
|
||||
|
Loading…
Reference in New Issue
Block a user