diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2007-12-12 07:04:58 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-01-25 19:04:04 -0200 |
commit | ea48c13ad0e5626b827bd7076c22df1a352e3983 (patch) | |
tree | 152c5f10a0abd3f87ac1d0017ac397fbbc45ccae /drivers/media/video/cx2341x.c | |
parent | f19a73d620c5412e2413b778f4dad21febdd6115 (diff) | |
download | blackbird-obmc-linux-ea48c13ad0e5626b827bd7076c22df1a352e3983.tar.gz blackbird-obmc-linux-ea48c13ad0e5626b827bd7076c22df1a352e3983.zip |
V4L/DVB (6861): cx2341x: command argument should be u32 instead of int
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/cx2341x.c')
-rw-r--r-- | drivers/media/video/cx2341x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/cx2341x.c b/drivers/media/video/cx2341x.c index 890c8867af1c..c592899a2317 100644 --- a/drivers/media/video/cx2341x.c +++ b/drivers/media/video/cx2341x.c @@ -775,7 +775,7 @@ void cx2341x_fill_defaults(struct cx2341x_mpeg_params *p) EXPORT_SYMBOL(cx2341x_fill_defaults); static int cx2341x_api(void *priv, cx2341x_mbox_func func, - int cmd, int args, ...) + u32 cmd, int args, ...) { u32 data[CX2341X_MBOX_MAX_DATA]; va_list vargs; |