Skip to content

Commit

Permalink
[media] r820t: Fix IF scale
Browse files Browse the repository at this point in the history
Scale used at get_if_freq and LO freq calculus is Hz.

Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Tested-by: Antti Palosaari <crope@iki.fi>
  • Loading branch information
Mauro Carvalho Chehab committed Apr 17, 2013
1 parent da31934 commit f60f5bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/tuners/r820t.c
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ static int r820t_set_tv_standard(struct r820t_priv *priv,
return rc;
msleep(1);
}
priv->int_freq = if_khz;
priv->int_freq = if_khz * 1000;

/* Check if standard changed. If so, filter calibration is needed */
if (type != priv->type)
Expand Down

0 comments on commit f60f5bc

Please sign in to comment.