[media] tvp5150: signedness bug in tvp5150_selmux()
authorDan Carpenter <dan.carpenter@oracle.com>
Thu, 12 Jul 2012 13:47:28 +0000 (10:47 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Mon, 30 Jul 2012 23:22:38 +0000 (20:22 -0300)
tvp5150_read() returns negative error codes so this needs to be an int
for the error handling to work.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/tvp5150.c

index 0d897cb..a751b6c 100644 (file)
@@ -257,7 +257,7 @@ static inline void tvp5150_selmux(struct v4l2_subdev *sd)
        int opmode = 0;
        struct tvp5150 *decoder = to_tvp5150(sd);
        int input = 0;
-       unsigned char val;
+       int val;
 
        if ((decoder->output & TVP5150_BLACK_SCREEN) || !decoder->enable)
                input = 8;