diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2008-11-01 07:25:11 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2008-12-29 14:53:26 -0500 |
commit | f473bf76c71ca734a16f9331ce6b6e9603641888 (patch) | |
tree | 033261b06286aef5dc6cde0aa961d828e2ffae7a /drivers/media/video/saa5249.c | |
parent | bef216b7edb0fac356565dea4bd65131bf6f9c4a (diff) |
V4L/DVB (9503): v4l: remove inode argument from video_usercopy
The inode argument was never used. Removing it from video_usercopy
brings the function pointer type of video_usercopy in line with similar
v4l2 functions, thus simplifying several drivers.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/saa5249.c')
-rw-r--r-- | drivers/media/video/saa5249.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/media/video/saa5249.c b/drivers/media/video/saa5249.c index 1594773e02d0..6ef3affb97f1 100644 --- a/drivers/media/video/saa5249.c +++ b/drivers/media/video/saa5249.c | |||
@@ -190,8 +190,7 @@ static int i2c_getdata(struct saa5249_device *t, int count, u8 *buf) | |||
190 | * Standard character-device-driver functions | 190 | * Standard character-device-driver functions |
191 | */ | 191 | */ |
192 | 192 | ||
193 | static int do_saa5249_ioctl(struct inode *inode, struct file *file, | 193 | static int do_saa5249_ioctl(struct file *file, unsigned int cmd, void *arg) |
194 | unsigned int cmd, void *arg) | ||
195 | { | 194 | { |
196 | static int virtual_mode = false; | 195 | static int virtual_mode = false; |
197 | struct saa5249_device *t = video_drvdata(file); | 196 | struct saa5249_device *t = video_drvdata(file); |
@@ -488,7 +487,7 @@ static int saa5249_ioctl(struct inode *inode, struct file *file, | |||
488 | 487 | ||
489 | cmd = vtx_fix_command(cmd); | 488 | cmd = vtx_fix_command(cmd); |
490 | mutex_lock(&t->lock); | 489 | mutex_lock(&t->lock); |
491 | err = video_usercopy(inode,file,cmd,arg,do_saa5249_ioctl); | 490 | err = video_usercopy(file, cmd, arg, do_saa5249_ioctl); |
492 | mutex_unlock(&t->lock); | 491 | mutex_unlock(&t->lock); |
493 | return err; | 492 | return err; |
494 | } | 493 | } |