diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2009-11-25 18:39:31 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-12-05 18:42:14 -0200 |
commit | 516e24d78feb4dded16df0053bd0e7c7f68fafa2 (patch) | |
tree | 51d55e71d1b9ec4054b8e7eb52d6dc659bccb991 /drivers/media/dvb/frontends | |
parent | 533ce0464f290c74ee76dc952a9e630df38c5a7d (diff) | |
download | kernel-crypto-516e24d78feb4dded16df0053bd0e7c7f68fafa2.tar.gz kernel-crypto-516e24d78feb4dded16df0053bd0e7c7f68fafa2.tar.xz kernel-crypto-516e24d78feb4dded16df0053bd0e7c7f68fafa2.zip |
V4L/DVB (13521): dib8000: fix compile warning
Trivial fix for this bogus compile warning:
v4l/dib8000.c:958: warning: 'ncoeff' may be used uninitialized in this function
Note: ncoeff is never used uninitialized, but the compiler couldn't
figure that out.
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends')
-rw-r--r-- | drivers/media/dvb/frontends/dib8000.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/dib8000.c b/drivers/media/dvb/frontends/dib8000.c index 44c2dc9b4f1..898400d331a 100644 --- a/drivers/media/dvb/frontends/dib8000.c +++ b/drivers/media/dvb/frontends/dib8000.c @@ -954,7 +954,7 @@ static void dib8000_set_channel(struct dib8000_state *state, u8 seq, u8 autosear u8 guard, crate, constellation, timeI; u8 permu_seg[] = { 6, 5, 7, 4, 8, 3, 9, 2, 10, 1, 11, 0, 12 }; u16 i, coeff[4], P_cfr_left_edge = 0, P_cfr_right_edge = 0, seg_mask13 = 0x1fff; // All 13 segments enabled - const s16 *ncoeff, *ana_fe; + const s16 *ncoeff = NULL, *ana_fe; u16 tmcc_pow = 0; u16 coff_pow = 0x2800; u16 init_prbs = 0xfff; |