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 /include/media | |
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 'include/media')
-rw-r--r-- | include/media/v4l2-ioctl.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h index 75a7dfc07dec..b273f0e81818 100644 --- a/include/media/v4l2-ioctl.h +++ b/include/media/v4l2-ioctl.h | |||
@@ -275,7 +275,7 @@ struct v4l2_ioctl_ops { | |||
275 | 275 | ||
276 | /* For other private ioctls */ | 276 | /* For other private ioctls */ |
277 | long (*vidioc_default) (struct file *file, void *fh, | 277 | long (*vidioc_default) (struct file *file, void *fh, |
278 | bool valid_prio, int cmd, void *arg); | 278 | bool valid_prio, unsigned int cmd, void *arg); |
279 | }; | 279 | }; |
280 | 280 | ||
281 | 281 | ||