[media] drx-j: Fix detection of no signal

When the signal is 7, it means that no signal was received.

Value experimentally measured.

Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
Mauro Carvalho Chehab 2014-03-10 08:18:31 -03:00
parent 6983257813
commit 80846a5c2f
1 changed files with 3 additions and 0 deletions

View File

@ -9420,6 +9420,9 @@ static int get_sig_strength(struct drx_demod_instance *demod, u16 *sig_strength)
*sig_strength = (20 * if_gain / if_agc_sns);
}
if (*sig_strength <= 7)
*sig_strength = 0;
return 0;
rw_error:
return -EIO;