]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
[media] v4l2-ctrls.c: zero min/max/step/def values for 64 bit integers
authorHans Verkuil <hans.verkuil@cisco.com>
Thu, 19 Apr 2012 15:37:18 +0000 (12:37 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Thu, 19 Apr 2012 20:24:19 +0000 (17:24 -0300)
Those fields are meaningless for such control types, and the control framework
should zero them. Otherwise v4l2-compliance will complain about non-zero
min/max/step/def fields.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/v4l2-ctrls.c

index 1a71aa5fd4584df12331d7082da6422dd17154e4..c93a9796f1fb7021933970ee067ca108b2aee082 100644 (file)
@@ -770,6 +770,7 @@ void v4l2_ctrl_fill(u32 id, const char **name, enum v4l2_ctrl_type *type,
        case V4L2_CID_MPEG_VIDEO_DEC_PTS:
                *type = V4L2_CTRL_TYPE_INTEGER64;
                *flags |= V4L2_CTRL_FLAG_READ_ONLY | V4L2_CTRL_FLAG_VOLATILE;
+               *min = *max = *step = *def = 0;
                break;
        default:
                *type = V4L2_CTRL_TYPE_INTEGER;