V4L/DVB: drivers/media/dvb/frontends/stv090x.c: fix use-uninitialised
authorAndrew Morton <akpm@linux-foundation.org>
Tue, 2 Feb 2010 22:40:50 +0000 (19:40 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Fri, 26 Feb 2010 18:10:51 +0000 (15:10 -0300)
drivers/media/dvb/frontends/stv090x.c: In function 'stv090x_blind_search':
drivers/media/dvb/frontends/stv090x.c:1967: warning: 'coarse_fail' may be used uninitialized in this function

Cc: Manu Abraham <manu@linuxtv.org>
Cc: Mauro Carvalho Chehab <mchehab@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Reviewed-by: Manu Abraham <manu@linuxtv.org>
Acked-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/dvb/frontends/stv090x.c

index e1d4647..a11a2eb 100644 (file)
@@ -1964,7 +1964,8 @@ static int stv090x_blind_search(struct stv090x_state *state)
        u32 agc2, reg, srate_coarse;
        s32 cpt_fail, agc2_ovflw, i;
        u8 k_ref, k_max, k_min;
-       int coarse_fail, lock;
+       int coarse_fail = 0;
+       int lock;
 
        k_max = 110;
        k_min = 10;