]> Pileus Git - ~andy/linux/commitdiff
V4L/DVB (10509): saa7134-video: two int controls lack a step
authorMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 9 Feb 2009 08:33:54 +0000 (05:33 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 30 Mar 2009 15:42:43 +0000 (12:42 -0300)
Fix two broken controls where a step weren't specified. Without a step,
userspace apps won't allow to adjust such controls.

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/saa7134/saa7134-video.c

index 193b07d83d1eaa4c96b481ab537cf0c5f0b56062..adfdb662c5eb6d3da9d1939dc79d5962570b658d 100644 (file)
@@ -452,6 +452,7 @@ static const struct v4l2_queryctrl video_ctrls[] = {
                .name          = "y offset odd field",
                .minimum       = 0,
                .maximum       = 128,
+               .step          = 1,
                .default_value = 0,
                .type          = V4L2_CTRL_TYPE_INTEGER,
        },{
@@ -459,6 +460,7 @@ static const struct v4l2_queryctrl video_ctrls[] = {
                .name          = "y offset even field",
                .minimum       = 0,
                .maximum       = 128,
+               .step          = 1,
                .default_value = 0,
                .type          = V4L2_CTRL_TYPE_INTEGER,
        },{