diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2008-10-18 12:39:53 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-10-21 12:31:25 -0400 |
commit | d5fbf32f381ad841d9d9537aa1b6f74796703361 (patch) | |
tree | 48149c1f8ace4aae98fb6a8473309cad39da44c9 /drivers/media | |
parent | f496bc716613378f2a3f9097a8e3ea4e4e30e79d (diff) |
V4L/DVB (9324): v4l2: add video_ioctl2_unlocked for unlocked_ioctl support.
Based on an older patch from Sakari Ailus.
Cc: Sakari Ailus <sakari.ailus@nokia.com>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/video/v4l2-ioctl.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/drivers/media/video/v4l2-ioctl.c b/drivers/media/video/v4l2-ioctl.c index 155c9d77a463..0417844d4079 100644 --- a/drivers/media/video/v4l2-ioctl.c +++ b/drivers/media/video/v4l2-ioctl.c | |||
@@ -630,8 +630,8 @@ static int __video_do_ioctl(struct inode *inode, struct file *file, | |||
630 | { | 630 | { |
631 | struct video_device *vfd = video_devdata(file); | 631 | struct video_device *vfd = video_devdata(file); |
632 | const struct v4l2_ioctl_ops *ops = vfd->ioctl_ops; | 632 | const struct v4l2_ioctl_ops *ops = vfd->ioctl_ops; |
633 | void *fh = file->private_data; | 633 | void *fh = file->private_data; |
634 | int ret = -EINVAL; | 634 | int ret = -EINVAL; |
635 | 635 | ||
636 | if ((vfd->debug & V4L2_DEBUG_IOCTL) && | 636 | if ((vfd->debug & V4L2_DEBUG_IOCTL) && |
637 | !(vfd->debug & V4L2_DEBUG_IOCTL_ARG)) { | 637 | !(vfd->debug & V4L2_DEBUG_IOCTL_ARG)) { |
@@ -1861,3 +1861,10 @@ out: | |||
1861 | return err; | 1861 | return err; |
1862 | } | 1862 | } |
1863 | EXPORT_SYMBOL(video_ioctl2); | 1863 | EXPORT_SYMBOL(video_ioctl2); |
1864 | |||
1865 | long video_ioctl2_unlocked(struct file *file, | ||
1866 | unsigned int cmd, unsigned long arg) | ||
1867 | { | ||
1868 | return video_ioctl2(file->f_path.dentry->d_inode, file, cmd, arg); | ||
1869 | } | ||
1870 | EXPORT_SYMBOL(video_ioctl2_unlocked); | ||