V4L/DVB (13522): valj5jf8007s/t: fix compile warnings
authorHans Verkuil <hverkuil@xs4all.nl>
Wed, 25 Nov 2009 21:42:42 +0000 (18:42 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Sat, 5 Dec 2009 20:42:15 +0000 (18:42 -0200)
Trivial fix for these bogus compile warnings:

v4l/va1j5jf8007s.c: In function 'va1j5jf8007s_tune':
v4l/va1j5jf8007s.c:394: warning: 'lock' may be used uninitialized in this function
v4l/va1j5jf8007t.c: In function 'va1j5jf8007t_tune':
v4l/va1j5jf8007t.c:273: warning: 'lock' may be used uninitialized in this function
v4l/va1j5jf8007t.c:273: warning: 'retry' may be used uninitialized in this function

These variables are never used uninitialized, but the compiler couldn't
figure that out unfortunately.

Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/dvb/pt1/va1j5jf8007s.c
drivers/media/dvb/pt1/va1j5jf8007t.c

index a20927e10d7084f7f1fa01f26a58f58672ba22f8..fc6594996e7946410b0332ff2552b4a50c8ece47 100644 (file)
@@ -391,7 +391,7 @@ va1j5jf8007s_tune(struct dvb_frontend *fe,
 {
        struct va1j5jf8007s_state *state;
        int ret;
-       int lock;
+       int lock = 0;
 
        state = fe->demodulator_priv;
 
index fe897343f4f87a3d5713340dba689b41ea261942..3db4f3e34e8f41c6bccadbdbb3b708a9305d4dc6 100644 (file)
@@ -270,7 +270,7 @@ va1j5jf8007t_tune(struct dvb_frontend *fe,
 {
        struct va1j5jf8007t_state *state;
        int ret;
-       int lock, retry;
+       int lock = 0, retry = 0;
 
        state = fe->demodulator_priv;