aboutsummaryrefslogtreecommitdiffstats
path: root/include/media
diff options
context:
space:
mode:
authorHans Verkuil <hverkuil@xs4all.nl>2006-06-18 12:43:28 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-06-25 01:05:21 -0400
commit0597691456cf3b08974d9949e4caa830e1d3c520 (patch)
treee70e6b89eb1d5dad01bd5f58ef715a72efbfba13 /include/media
parent4f341712120abde54d9113856e9118e6580d7061 (diff)
V4L/DVB (4189): Add videodev support for VIDIOC_S/G/TRY_EXT_CTRLS.
videodev.c copies the control list specified in struct v4l2_ext_controls to kernel space. Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'include/media')
-rw-r--r--include/media/v4l2-dev.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/media/v4l2-dev.h b/include/media/v4l2-dev.h
index dec6b24e4c42..a1b473190e65 100644
--- a/include/media/v4l2-dev.h
+++ b/include/media/v4l2-dev.h
@@ -232,6 +232,12 @@ struct video_device
232 struct v4l2_control *a); 232 struct v4l2_control *a);
233 int (*vidioc_s_ctrl) (struct file *file, void *fh, 233 int (*vidioc_s_ctrl) (struct file *file, void *fh,
234 struct v4l2_control *a); 234 struct v4l2_control *a);
235 int (*vidioc_g_ext_ctrls) (struct file *file, void *fh,
236 struct v4l2_ext_controls *a);
237 int (*vidioc_s_ext_ctrls) (struct file *file, void *fh,
238 struct v4l2_ext_controls *a);
239 int (*vidioc_try_ext_ctrls) (struct file *file, void *fh,
240 struct v4l2_ext_controls *a);
235 int (*vidioc_querymenu) (struct file *file, void *fh, 241 int (*vidioc_querymenu) (struct file *file, void *fh,
236 struct v4l2_querymenu *a); 242 struct v4l2_querymenu *a);
237 243