diff options
author | Hans Verkuil <hans.verkuil@cisco.com> | 2013-10-04 10:01:41 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2013-10-15 11:55:02 -0400 |
commit | 19227efb9ba40801a7d34c88a63c1f08a8382d27 (patch) | |
tree | f8b5ee2dd1a065cfe18740a4c594787cf923ad90 /drivers/media | |
parent | 45bc3fce17905036d57706844fcdaa185a23f6e9 (diff) |
[media] timblogiw: fix two sparse warnings
drivers/media/platform/timblogiw.c:763:43: warning: incorrect type in initializer (incompatible argument 3 (different signedness))
drivers/media/platform/timblogiw.c:764:43: warning: incorrect type in initializer (incompatible argument 3 (different signedness))
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/platform/timblogiw.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/platform/timblogiw.c b/drivers/media/platform/timblogiw.c index b557caf5b1a4..6a74ce040d28 100644 --- a/drivers/media/platform/timblogiw.c +++ b/drivers/media/platform/timblogiw.c | |||
@@ -403,7 +403,7 @@ static int timblogiw_s_input(struct file *file, void *priv, unsigned int input) | |||
403 | return 0; | 403 | return 0; |
404 | } | 404 | } |
405 | 405 | ||
406 | static int timblogiw_streamon(struct file *file, void *priv, unsigned int type) | 406 | static int timblogiw_streamon(struct file *file, void *priv, enum v4l2_buf_type type) |
407 | { | 407 | { |
408 | struct video_device *vdev = video_devdata(file); | 408 | struct video_device *vdev = video_devdata(file); |
409 | struct timblogiw_fh *fh = priv; | 409 | struct timblogiw_fh *fh = priv; |
@@ -420,7 +420,7 @@ static int timblogiw_streamon(struct file *file, void *priv, unsigned int type) | |||
420 | } | 420 | } |
421 | 421 | ||
422 | static int timblogiw_streamoff(struct file *file, void *priv, | 422 | static int timblogiw_streamoff(struct file *file, void *priv, |
423 | unsigned int type) | 423 | enum v4l2_buf_type type) |
424 | { | 424 | { |
425 | struct video_device *vdev = video_devdata(file); | 425 | struct video_device *vdev = video_devdata(file); |
426 | struct timblogiw_fh *fh = priv; | 426 | struct timblogiw_fh *fh = priv; |