This is an automatic generated email to let you know that the following patch 
were queued at the 
http://git.linuxtv.org/media_tree.git tree:

Subject: [media] vivi: fix compiler warning
Author:  Hans Verkuil <[email protected]>
Date:    Tue Jan 11 17:32:28 2011 -0300

drivers/media/video/vivi.c:1059: warning: this decimal constant is unsigned 
only in ISO C90

Signed-off-by: Hans Verkuil <[email protected]>
Signed-off-by: Mauro Carvalho Chehab <[email protected]>

 drivers/media/video/vivi.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

---

http://git.linuxtv.org/media_tree.git?a=commitdiff;h=96d8d01caa429a99a7a64a12721043a36dd8e72f

diff --git a/drivers/media/video/vivi.c b/drivers/media/video/vivi.c
index 66ce69e..bd104d0 100644
--- a/drivers/media/video/vivi.c
+++ b/drivers/media/video/vivi.c
@@ -1082,8 +1082,8 @@ static const struct v4l2_ctrl_config vivi_ctrl_int32 = {
        .id = VIVI_CID_CUSTOM_BASE + 2,
        .name = "Integer 32 Bits",
        .type = V4L2_CTRL_TYPE_INTEGER,
-       .min = -2147483648,
-       .max = 2147483647,
+       .min = 0x80000000,
+       .max = 0x7fffffff,
        .step = 1,
 };
 

_______________________________________________
linuxtv-commits mailing list
[email protected]
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits

Reply via email to