diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2010-11-14 10:09:38 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-12-01 20:10:10 -0200 |
commit | 61df3c9b3fe6a7e47d25b27ae4df0ecdb07b8fbd (patch) | |
tree | 7496289f4aec57ff4981dfd3ffc37282d4948603 /drivers/media/video/pms.c | |
parent | d2c998f7453af7ad416bc38d09ae9d453d2fac5e (diff) |
[media] BKL: trivial ioctl -> unlocked_ioctl video driver conversions
These drivers could be trivially converted to unlocked_ioctl since they
already did locking.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/pms.c')
-rw-r--r-- | drivers/media/video/pms.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/pms.c b/drivers/media/video/pms.c index 7129b50757d..7551907f8c2 100644 --- a/drivers/media/video/pms.c +++ b/drivers/media/video/pms.c @@ -932,7 +932,7 @@ static ssize_t pms_read(struct file *file, char __user *buf, static const struct v4l2_file_operations pms_fops = { .owner = THIS_MODULE, - .ioctl = video_ioctl2, + .unlocked_ioctl = video_ioctl2, .read = pms_read, }; |