V4L/DVB (10110): v4l2-ioctl: Fix warnings when using .unlocked_ioctl = __video_ioctl2
authorMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 29 Dec 2008 22:15:43 +0000 (19:15 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Tue, 30 Dec 2008 11:40:33 +0000 (09:40 -0200)
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>
drivers/media/video/v4l2-ioctl.c
include/media/v4l2-ioctl.h

index bef4286..b063381 100644 (file)
@@ -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];
index c884432..fcdb58c 100644 (file)
@@ -297,7 +297,7 @@ extern int video_usercopy(struct file *file, unsigned int cmd,
 /* Standard handlers for V4L ioctl's */
 
 /* This prototype is used on fops.unlocked_ioctl */
-extern int __video_ioctl2(struct file *file,
+extern long __video_ioctl2(struct file *file,
                        unsigned int cmd, unsigned long arg);
 
 /* This prototype is used on fops.ioctl