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 a20927e..fc65949 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 fe89734..3db4f3e 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;