The patch number 14081 was added via Douglas Schilling Landgraf <dougsl...@redhat.com> to http://linuxtv.org/hg/v4l-dvb master development tree.
Kernel patches in this development tree may be modified to be backward compatible with older kernels. Compatibility modifications will be removed before inclusion into the mainstream Kernel If anyone has any objections, please let us know by sending a message to: Linux Media Mailing List <linux-me...@vger.kernel.org> ------ From: M?rton N?meth <nm...@freemail.hu> zoran: match parameter signedness of g_input_status The second parameter of g_input_status operation in <media/v4l2-subdev.h> is unsigned so also call it with unsigned paramter. This will remove the following sparse warning (see "make C=1"): * incorrect type in argument 2 (different signedness) expected unsigned int [usertype] *status got int *<noident> Priority: normal Signed-off-by: M?rton N?meth <nm...@freemail.hu> Signed-off-by: Mauro Carvalho Chehab <mche...@redhat.com> Signed-off-by: Douglas Schilling Landgraf <dougsl...@redhat.com> --- linux/drivers/media/video/zoran/zoran_device.c | 3 ++- linux/drivers/media/video/zoran/zoran_driver.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff -r c94839981e3d -r 7df9b99f0da7 linux/drivers/media/video/zoran/zoran_device.c --- a/linux/drivers/media/video/zoran/zoran_device.c Mon Feb 01 15:30:15 2010 -0200 +++ b/linux/drivers/media/video/zoran/zoran_device.c Mon Feb 01 15:32:02 2010 -0200 @@ -1197,7 +1197,8 @@ static void zoran_restart(struct zoran *zr) { /* Now the stat_comm buffer is ready for restart */ - int status = 0, mode; + unsigned int status = 0; + int mode; if (zr->codec_mode == BUZ_MODE_MOTION_COMPRESS) { decoder_call(zr, video, g_input_status, &status); diff -r c94839981e3d -r 7df9b99f0da7 linux/drivers/media/video/zoran/zoran_driver.c --- a/linux/drivers/media/video/zoran/zoran_driver.c Mon Feb 01 15:30:15 2010 -0200 +++ b/linux/drivers/media/video/zoran/zoran_driver.c Mon Feb 01 15:32:02 2010 -0200 @@ -1452,7 +1452,7 @@ } if (norm == V4L2_STD_ALL) { - int status = 0; + unsigned int status = 0; v4l2_std_id std = 0; decoder_call(zr, video, querystd, &std); --- Patch is available at: http://linuxtv.org/hg/v4l-dvb/rev/7df9b99f0da74a4b55ac411e9d68a3fb36fa7e4a _______________________________________________ linuxtv-commits mailing list linuxtv-commits@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits