[media] cx231xx: add required VIDIOC_DBG_G_CHIP_IDENT support
authorHans Verkuil <hans.verkuil@cisco.com>
Thu, 13 Sep 2012 08:37:11 +0000 (05:37 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Tue, 5 Mar 2013 17:25:57 +0000 (14:25 -0300)
This fixes a v4l2_compliance failure.

[mchehab@redhat.com: CodingStyle fixes]
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/usb/cx231xx/cx231xx-video.c

index ffeedcd2448b451016c95a1ee23843b180d7ccb5..1b29158bbbe25be8c423b87257c65e60612eaf29 100644 (file)
@@ -1456,6 +1456,19 @@ static int vidioc_s_frequency(struct file *file, void *priv,
        return rc;
 }
 
+static int vidioc_g_chip_ident(struct file *file, void *fh,
+                               struct v4l2_dbg_chip_ident *chip)
+{
+       chip->ident = V4L2_IDENT_NONE;
+       chip->revision = 0;
+       if (chip->match.type == V4L2_CHIP_MATCH_HOST) {
+               if (v4l2_chip_match_host(&chip->match))
+                       chip->ident = V4L2_IDENT_CX23100;
+               return 0;
+       }
+       return -EINVAL;
+}
+
 #ifdef CONFIG_VIDEO_ADV_DEBUG
 
 /*
@@ -2514,6 +2527,7 @@ static const struct v4l2_ioctl_ops video_ioctl_ops = {
        .vidioc_s_tuner                = vidioc_s_tuner,
        .vidioc_g_frequency            = vidioc_g_frequency,
        .vidioc_s_frequency            = vidioc_s_frequency,
+       .vidioc_g_chip_ident           = vidioc_g_chip_ident,
 #ifdef CONFIG_VIDEO_ADV_DEBUG
        .vidioc_g_register             = vidioc_g_register,
        .vidioc_s_register             = vidioc_s_register,