Skip to content

Commit

Permalink
V4L/DVB (13357): stv090x: adds an additional check for signal presenc…
Browse files Browse the repository at this point in the history
…e based on AGC1

Signed-off-by: Andreas Regel <andreas.regel@gmx.de>
Signed-off-by: Manu Abraham <manu@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
  • Loading branch information
Andreas Regel authored and Mauro Carvalho Chehab committed Dec 5, 2009
1 parent a4978a8 commit c4fa649
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
7 changes: 3 additions & 4 deletions drivers/media/dvb/frontends/stv090x.c
Original file line number Diff line number Diff line change
Expand Up @@ -3185,7 +3185,7 @@ static enum stv090x_signal_state stv090x_algo(struct stv090x_state *state)
if ((agc1_power == 0) && (power_iq < STV090x_IQPOWER_THRESHOLD)) {
dprintk(FE_ERROR, 1, "No Signal: POWER_IQ=0x%02x", power_iq);
lock = 0;

signal_state = STV090x_NOAGC1;
} else {
reg = STV090x_READ_DEMOD(state, DEMOD);
STV090x_SETFIELD_Px(reg, SPECINV_CONTROL_FIELD, state->inversion);
Expand All @@ -3209,9 +3209,8 @@ static enum stv090x_signal_state stv090x_algo(struct stv090x_state *state)
}
}

/* need to check for AGC1 state */


if (signal_state == STV090x_NOAGC1)
return signal_state;

if (state->algo == STV090x_BLIND_SEARCH)
lock = stv090x_blind_search(state);
Expand Down
1 change: 1 addition & 0 deletions drivers/media/dvb/frontends/stv090x_priv.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@
STV090x_SEARCH_AGC2_TH_CUT30)

enum stv090x_signal_state {
STV090x_NOAGC1,
STV090x_NOCARRIER,
STV090x_NODATA,
STV090x_DATAOK,
Expand Down

0 comments on commit c4fa649

Please sign in to comment.