Skip to content

Commit

Permalink
V4L/DVB (7731): tuner-xc2028: fix signal strength calculus
Browse files Browse the repository at this point in the history
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
  • Loading branch information
Mauro Carvalho Chehab committed Apr 24, 2008
1 parent c21f1e2 commit b0166ab
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions drivers/media/video/tuner-xc2028.c
Original file line number Diff line number Diff line change
Expand Up @@ -844,21 +844,28 @@ static int xc2028_signal(struct dvb_frontend *fe, u16 *strength)

/* Sync Lock Indicator */
rc = xc2028_get_reg(priv, 0x0002, &frq_lock);
if (rc < 0 || frq_lock == 0)
if (rc < 0)
goto ret;

/* Frequency is locked. Return signal quality */
/* Frequency is locked */
if (frq_lock == 1)
signal = 32768;

/* Get SNR of the video signal */
rc = xc2028_get_reg(priv, 0x0040, &signal);
if (rc < 0)
signal = -frq_lock;
goto ret;

/* Use both frq_lock and signal to generate the result */
signal = signal || ((signal & 0x07) << 12);

ret:
mutex_unlock(&priv->lock);

*strength = signal;

tuner_dbg("signal strength is %d\n", signal);

return rc;
}

Expand Down

0 comments on commit b0166ab

Please sign in to comment.