diff options
author | Manu Abraham <abraham.manu@gmail.com> | 2009-06-17 15:48:17 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-06-23 02:29:50 -0400 |
commit | 0a5ded56fd3f4096681f8e6a249fb058485f4e46 (patch) | |
tree | 3382f52de096fa91f4e475ed99a0b6f394f4f281 /drivers/media/dvb/frontends/stv090x.c | |
parent | d8b2996607d492ffa99628bafc80da14d3a5482d (diff) |
V4L/DVB (12130): Fix a redundant compiler warning
drivers/media/dvb/frontends/stv090x.c: In function ‘stv090x_optimize_carloop_short’:
drivers/media/dvb/frontends/stv090x.c:2677: warning: ‘short_crl’ may be used uninitialized in this function
Signed-off-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/dvb/frontends/stv090x.c')
-rw-r--r-- | drivers/media/dvb/frontends/stv090x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/stv090x.c b/drivers/media/dvb/frontends/stv090x.c index 96ef745a2e4e..4e89bb02bff3 100644 --- a/drivers/media/dvb/frontends/stv090x.c +++ b/drivers/media/dvb/frontends/stv090x.c | |||
@@ -2674,7 +2674,7 @@ static u8 stv090x_optimize_carloop(struct stv090x_state *state, enum stv090x_mod | |||
2674 | 2674 | ||
2675 | static u8 stv090x_optimize_carloop_short(struct stv090x_state *state) | 2675 | static u8 stv090x_optimize_carloop_short(struct stv090x_state *state) |
2676 | { | 2676 | { |
2677 | struct stv090x_short_frame_crloop *short_crl; | 2677 | struct stv090x_short_frame_crloop *short_crl = NULL; |
2678 | s32 index = 0; | 2678 | s32 index = 0; |
2679 | u8 aclc = 0x0b; | 2679 | u8 aclc = 0x0b; |
2680 | 2680 | ||