Commit f60f5bcb authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

[media] r820t: Fix IF scale

Scale used at get_if_freq and LO freq calculus is Hz.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
Tested-by: default avatarAntti Palosaari <crope@iki.fi>
parent da31934f
...@@ -975,7 +975,7 @@ static int r820t_set_tv_standard(struct r820t_priv *priv, ...@@ -975,7 +975,7 @@ static int r820t_set_tv_standard(struct r820t_priv *priv,
return rc; return rc;
msleep(1); msleep(1);
} }
priv->int_freq = if_khz; priv->int_freq = if_khz * 1000;
/* Check if standard changed. If so, filter calibration is needed */ /* Check if standard changed. If so, filter calibration is needed */
if (type != priv->type) if (type != priv->type)
......
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