diff options
author | Stefan Ringel <linuxtv@stefanringel.de> | 2011-12-17 14:57:15 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2012-01-05 08:06:12 -0500 |
commit | eeecd0caaf9ce13ecd34187efae993d59a156135 (patch) | |
tree | f0da077294b601714c8f27f05413ed50614d2cdc /drivers/media/common | |
parent | 3308e2b53a6737d28782c89e6d2dd80237fde3e3 (diff) |
[media] mt2063: fix get_if_frequency call
[mchehab@redhat.com: patch rebased to apply]
Signed-off-by: Stefan Ringel <linuxtv@stefanringel.de>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/common')
-rw-r--r-- | drivers/media/common/tuners/mt2063.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/common/tuners/mt2063.c b/drivers/media/common/tuners/mt2063.c index 98020a90508d..c89af3cd5eba 100644 --- a/drivers/media/common/tuners/mt2063.c +++ b/drivers/media/common/tuners/mt2063.c | |||
@@ -2199,7 +2199,7 @@ static int mt2063_get_if_frequency(struct dvb_frontend *fe, u32 *freq) | |||
2199 | if (!state->init) | 2199 | if (!state->init) |
2200 | return -ENODEV; | 2200 | return -ENODEV; |
2201 | 2201 | ||
2202 | *freq = state->reference * 1000; | 2202 | *freq = state->AS_Data.f_out; |
2203 | 2203 | ||
2204 | dprintk(1, "IF frequency: %d\n", *freq); | 2204 | dprintk(1, "IF frequency: %d\n", *freq); |
2205 | 2205 | ||