aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/v4l2-ioctl.c
diff options
context:
space:
mode:
authorMauro Carvalho Chehab <mchehab@redhat.com>2008-12-29 19:15:43 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-12-30 09:40:33 -0200
commit92ab7886119da6375a983713eedab444e32094f6 (patch)
treea17583daee778c35ff3013a04cabdbe8891411cd /drivers/media/video/v4l2-ioctl.c
parent902571aaa91263bc27e923e94ddf161c106befee (diff)
downloadkernel_samsung_smdk4412-92ab7886119da6375a983713eedab444e32094f6.zip
kernel_samsung_smdk4412-92ab7886119da6375a983713eedab444e32094f6.tar.gz
kernel_samsung_smdk4412-92ab7886119da6375a983713eedab444e32094f6.tar.bz2
V4L/DVB (10110): v4l2-ioctl: Fix warnings when using .unlocked_ioctl = __video_ioctl2
This patch fixes this warning: drivers/media/video/gspca/gspca.c:1811: warning: initialization from incompatible pointer type The reason is that the returned argument should be a long, not an integer. Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/v4l2-ioctl.c')
-rw-r--r--drivers/media/video/v4l2-ioctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/v4l2-ioctl.c b/drivers/media/video/v4l2-ioctl.c
index bef4286..b063381 100644
--- a/drivers/media/video/v4l2-ioctl.c
+++ b/drivers/media/video/v4l2-ioctl.c
@@ -1852,7 +1852,7 @@ static int __video_do_ioctl(struct file *file,
return ret;
}
-int __video_ioctl2(struct file *file,
+long __video_ioctl2(struct file *file,
unsigned int cmd, unsigned long arg)
{
char sbuf[128];