diff options
author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-03-26 07:04:52 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-03-29 07:18:36 -0400 |
commit | 6d43be7789db0455a82a3ad4ff5f713cc588c1e2 (patch) | |
tree | ae39f4a0c557c7e8f776f8788182d9d9d2ad8e2c /drivers/media/pci/cx18/cx18-ioctl.c | |
parent | 2f9e96c39fb4cc0680ccf2ec155133249174780c (diff) |
[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/cx18/cx18-ioctl.c')
-rw-r--r-- | drivers/media/pci/cx18/cx18-ioctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/pci/cx18/cx18-ioctl.c b/drivers/media/pci/cx18/cx18-ioctl.c index 7dbd5a9451ed..aee7b6dacbfe 100644 --- a/drivers/media/pci/cx18/cx18-ioctl.c +++ b/drivers/media/pci/cx18/cx18-ioctl.c | |||
@@ -1110,7 +1110,7 @@ static int cx18_log_status(struct file *file, void *fh) | |||
1110 | } | 1110 | } |
1111 | 1111 | ||
1112 | static long cx18_default(struct file *file, void *fh, bool valid_prio, | 1112 | static long cx18_default(struct file *file, void *fh, bool valid_prio, |
1113 | int cmd, void *arg) | 1113 | unsigned int cmd, void *arg) |
1114 | { | 1114 | { |
1115 | struct cx18 *cx = fh2id(fh)->cx; | 1115 | struct cx18 *cx = fh2id(fh)->cx; |
1116 | 1116 | ||