diff options
author | Frederic Weisbecker <fweisbec@gmail.com> | 2010-08-13 16:29:03 -0400 |
---|---|---|
committer | Frederic Weisbecker <fweisbec@gmail.com> | 2010-08-13 18:24:24 -0400 |
commit | c6d7ba8b12636923f3e30997dec69bed58e176b6 (patch) | |
tree | dacbb82afcf6eef471d7e6fd6a4665bff270506e /drivers | |
parent | 02d6d685fc6f2d8b48b133b5a5a43755e005074e (diff) |
v4l: Remove reference to bkl ioctl in compat ioctl handling
There are no more users of struct file_operations:ioctl. These
can be safely removed.
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Mauro Carvalho Chehab <mchehab@redhat.com>
Cc: John Kacur <jkacur@redhat.com>
Cc: Hans Verkuil <hverkuil@xs4all.nl>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/media/video/v4l2-compat-ioctl32.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/drivers/media/video/v4l2-compat-ioctl32.c b/drivers/media/video/v4l2-compat-ioctl32.c index d2f20c2acae2..073f01390cdd 100644 --- a/drivers/media/video/v4l2-compat-ioctl32.c +++ b/drivers/media/video/v4l2-compat-ioctl32.c | |||
@@ -228,11 +228,6 @@ static long native_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | |||
228 | 228 | ||
229 | if (file->f_op->unlocked_ioctl) | 229 | if (file->f_op->unlocked_ioctl) |
230 | ret = file->f_op->unlocked_ioctl(file, cmd, arg); | 230 | ret = file->f_op->unlocked_ioctl(file, cmd, arg); |
231 | else if (file->f_op->ioctl) { | ||
232 | lock_kernel(); | ||
233 | ret = file->f_op->ioctl(file->f_path.dentry->d_inode, file, cmd, arg); | ||
234 | unlock_kernel(); | ||
235 | } | ||
236 | 231 | ||
237 | return ret; | 232 | return ret; |
238 | } | 233 | } |
@@ -973,7 +968,7 @@ long v4l2_compat_ioctl32(struct file *file, unsigned int cmd, unsigned long arg) | |||
973 | { | 968 | { |
974 | long ret = -ENOIOCTLCMD; | 969 | long ret = -ENOIOCTLCMD; |
975 | 970 | ||
976 | if (!file->f_op->ioctl && !file->f_op->unlocked_ioctl) | 971 | if (!file->f_op->unlocked_ioctl) |
977 | return ret; | 972 | return ret; |
978 | 973 | ||
979 | switch (cmd) { | 974 | switch (cmd) { |