mirror of
https://github.com/torvalds/linux.git
synced 2024-11-28 15:11:31 +00:00
[media] davinci: vpbe: replace V4L2_OUT_CAP_CUSTOM_TIMINGS with V4L2_OUT_CAP_DV_TIMINGS
This patch replaces V4L2_OUT_CAP_CUSTOM_TIMINGS macro with V4L2_OUT_CAP_DV_TIMINGS. As V4L2_OUT_CAP_CUSTOM_TIMINGS is being phased out. Signed-off-by: Lad, Prabhakar <prabhakar.lad@ti.com> Signed-off-by: Manjunath Hadli <manjunath.hadli@ti.com> Acked-by: Hans Verkuil <hans.verkuil@cisco.com> Acked-by: Sekhar Nori <nsekhar@ti.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
fabc4e948b
commit
e32087bcc4
@ -699,7 +699,7 @@ static struct vpbe_output dm644xevm_vpbe_outputs[] = {
|
||||
.index = 1,
|
||||
.name = "Component",
|
||||
.type = V4L2_OUTPUT_TYPE_ANALOG,
|
||||
.capabilities = V4L2_OUT_CAP_CUSTOM_TIMINGS,
|
||||
.capabilities = V4L2_OUT_CAP_DV_TIMINGS,
|
||||
},
|
||||
.subdev_name = VPBE_VENC_SUBDEV_NAME,
|
||||
.default_mode = "480p59_94",
|
||||
|
@ -340,7 +340,7 @@ static int vpbe_s_dv_timings(struct vpbe_device *vpbe_dev,
|
||||
|
||||
|
||||
if (!(cfg->outputs[out_index].output.capabilities &
|
||||
V4L2_OUT_CAP_CUSTOM_TIMINGS))
|
||||
V4L2_OUT_CAP_DV_TIMINGS))
|
||||
return -EINVAL;
|
||||
|
||||
for (i = 0; i < output->num_modes; i++) {
|
||||
@ -408,7 +408,7 @@ static int vpbe_enum_dv_timings(struct vpbe_device *vpbe_dev,
|
||||
int j = 0;
|
||||
int i;
|
||||
|
||||
if (!(output->output.capabilities & V4L2_OUT_CAP_CUSTOM_TIMINGS))
|
||||
if (!(output->output.capabilities & V4L2_OUT_CAP_DV_TIMINGS))
|
||||
return -EINVAL;
|
||||
|
||||
for (i = 0; i < output->num_modes; i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user