diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-03-26 15:04:52 +0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-03-29 15:18:36 +0400 |
commit | 6d43be7789db0455a82a3ad4ff5f713cc588c1e2 (patch) | |
tree | ae39f4a0c557c7e8f776f8788182d9d9d2ad8e2c /drivers/media/pci/meye | |
parent | 2f9e96c39fb4cc0680ccf2ec155133249174780c (diff) | |
download | linux-6d43be7789db0455a82a3ad4ff5f713cc588c1e2.tar.xz |
[media] ioctl numbers are unsigned int
ioctl's number is unsigned int. Fix it at vidioc_default.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/pci/meye')
-rw-r--r-- | drivers/media/pci/meye/meye.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/pci/meye/meye.c b/drivers/media/pci/meye/meye.c index 7859c43479d7..2381b05432e6 100644 --- a/drivers/media/pci/meye/meye.c +++ b/drivers/media/pci/meye/meye.c @@ -1410,7 +1410,7 @@ static int vidioc_streamoff(struct file *file, void *fh, enum v4l2_buf_type i) } static long vidioc_default(struct file *file, void *fh, bool valid_prio, - int cmd, void *arg) + unsigned int cmd, void *arg) { switch (cmd) { case MEYEIOC_G_PARAMS: |