[media] v4l2-core: tvnorms may be 0 for a given input, handle that case
authorHans Verkuil <hans.verkuil@cisco.com>
Fri, 14 Sep 2012 09:45:43 +0000 (06:45 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Wed, 26 Sep 2012 12:48:59 +0000 (09:48 -0300)
Currently the core code looks at tvnorms to see whether ENUMSTD
or G_PARM should be enabled. This is not a good check for drivers
that support the STD API on one input and the DV Timings API on another.
In that case tvnorms may be 0.
Instead check whether s_std is present (for ENUMSTD) or whether g_std or
current_norm is present for g_parm.
Also, in the enumstd core function return ENODATA if tvnorms is 0,
because in that case the current input does not support the STD API
and ENUMSTD should return ENODATA for that.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Reviewed-by: Sakari Ailus <sakari.ailus@iki.fi>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/v4l2-core/v4l2-dev.c
drivers/media/v4l2-core/v4l2-ioctl.c

index 95f92ea4dbd56aeac9233182bf5a6fa1ad1728b8..498049fa43e4c6616c76b5f73cb63ff2f77cc911 100644 (file)
@@ -609,7 +609,7 @@ static void determine_valid_ioctls(struct video_device *vdev)
        SET_VALID_IOCTL(ops, VIDIOC_S_FBUF, vidioc_s_fbuf);
        SET_VALID_IOCTL(ops, VIDIOC_STREAMON, vidioc_streamon);
        SET_VALID_IOCTL(ops, VIDIOC_STREAMOFF, vidioc_streamoff);
-       if (vdev->tvnorms)
+       if (ops->vidioc_s_std)
                set_bit(_IOC_NR(VIDIOC_ENUMSTD), valid_ioctls);
        if (ops->vidioc_g_std || vdev->current_norm)
                set_bit(_IOC_NR(VIDIOC_G_STD), valid_ioctls);
@@ -663,7 +663,7 @@ static void determine_valid_ioctls(struct video_device *vdev)
        SET_VALID_IOCTL(ops, VIDIOC_DECODER_CMD, vidioc_decoder_cmd);
        SET_VALID_IOCTL(ops, VIDIOC_TRY_DECODER_CMD, vidioc_try_decoder_cmd);
        if (ops->vidioc_g_parm || (vdev->vfl_type == VFL_TYPE_GRABBER &&
-                                       (ops->vidioc_g_std || vdev->tvnorms)))
+                                       (ops->vidioc_g_std || vdev->current_norm)))
                set_bit(_IOC_NR(VIDIOC_G_PARM), valid_ioctls);
        SET_VALID_IOCTL(ops, VIDIOC_S_PARM, vidioc_s_parm);
        SET_VALID_IOCTL(ops, VIDIOC_G_TUNER, vidioc_g_tuner);
index 2f26e9496a3b8bca358025dc4874d957ff01db50..f3ced2513b2ff159ac7bc5e265a788a8713cc3a6 100644 (file)
@@ -1304,6 +1304,11 @@ static int v4l_enumstd(const struct v4l2_ioctl_ops *ops,
        unsigned int index = p->index, i, j = 0;
        const char *descr = "";
 
+       /* Return -ENODATA if the tvnorms for the current input
+          or output is 0, meaning that it doesn't support this API. */
+       if (id == 0)
+               return -ENODATA;
+
        /* Return norm array in a canonical way */
        for (i = 0; i <= index && id; i++) {
                /* last std value in the standards array is 0, so this