Commit eadf29b9 authored by Arvo Jarve's avatar Arvo Jarve Committed by Mauro Carvalho Chehab

V4L/DVB (9438): Bug! RTF is signed

Signed-off-by: default avatarArvo Jarve <arvo@softshark.ee>
Signed-off-by: default avatarManu Abraham <manu@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent ba8862a8
......@@ -194,8 +194,9 @@ static void stb0899_first_subrange(struct stb0899_state *state)
static enum stb0899_status stb0899_check_tmg(struct stb0899_state *state)
{
struct stb0899_internal *internal = &state->internal;
int lock, timing;
int lock;
u8 reg;
s8 timing;
msleep(internal->t_timing);
......@@ -207,7 +208,7 @@ static enum stb0899_status stb0899_check_tmg(struct stb0899_state *state)
timing = stb0899_read_reg(state, STB0899_RTF);
if (lock >= 42) {
if ((lock > 48) && (timing >= 110)) {
if ((lock > 48) && (ABS(timing) >= 110)) {
internal->status = ANALOGCARRIER;
dprintk(state->verbose, FE_DEBUG, 1, "-->ANALOG Carrier !");
} else {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment