summaryrefslogtreecommitdiff
path: root/linux/drivers/media/video/cx18/cx18-controls.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2009-06-14 10:20:21 +0200
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-06-14 10:20:21 +0200
commita7b0779afa5ca6b4ade07f4d4083194ea0bde9fb (patch)
treee646cf1dd5a8c2dd73724a21e92d157ab5e54b95 /linux/drivers/media/video/cx18/cx18-controls.c
parentf2d348202dbf20e4871b8f10852f55615260b5c0 (diff)
downloadmediapointer-dvb-s2-a7b0779afa5ca6b4ade07f4d4083194ea0bde9fb.tar.gz
mediapointer-dvb-s2-a7b0779afa5ca6b4ade07f4d4083194ea0bde9fb.tar.bz2
ivtv/cx18: fix regression: class controls are no longer seen
From: Hans Verkuil <hverkuil@xs4all.nl> A previous change (v4l2-common: remove v4l2_ctrl_query_fill_std) broke the handling of class controls in VIDIOC_QUERYCTRL. The MPEG class control was broken for all drivers that use the cx2341x module and the USER class control was broken for ivtv and cx18. This change adds back proper class control support. Priority: high Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'linux/drivers/media/video/cx18/cx18-controls.c')
-rw-r--r--linux/drivers/media/video/cx18/cx18-controls.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/linux/drivers/media/video/cx18/cx18-controls.c b/linux/drivers/media/video/cx18/cx18-controls.c
index 8e35c3aed..5136df198 100644
--- a/linux/drivers/media/video/cx18/cx18-controls.c
+++ b/linux/drivers/media/video/cx18/cx18-controls.c
@@ -61,6 +61,8 @@ int cx18_queryctrl(struct file *file, void *fh, struct v4l2_queryctrl *qctrl)
switch (qctrl->id) {
/* Standard V4L2 controls */
+ case V4L2_CID_USER_CLASS:
+ return v4l2_ctrl_query_fill(qctrl, 0, 0, 0, 0);
case V4L2_CID_BRIGHTNESS:
case V4L2_CID_HUE:
case V4L2_CID_SATURATION: