diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2006-04-22 15:15:07 -0400 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2006-04-22 15:15:07 -0400 |
commit | 43b81c829e515e8e949cab05782c68c9b2dd5c64 (patch) | |
tree | 223d6dd649209e9a4470f5b3fbca8b0aafbcd2a5 /linux/drivers/media/dvb/frontends | |
parent | 5afa1d2f3acfdd9039865f615405fd9e621c8deb (diff) | |
download | mediapointer-dvb-s2-43b81c829e515e8e949cab05782c68c9b2dd5c64.tar.gz mediapointer-dvb-s2-43b81c829e515e8e949cab05782c68c9b2dd5c64.tar.bz2 |
fix frequency values in the ranges structures of the LG TDVS H06xF tuners
From: Rusty Scott <rustys@ieee.org>
Frequency range values in the current driver for the LG TDVS H06xF tuners
appear to have been a transposing of the 5 in the mid range 160-455 instead
of 165-450.
This patch corrects the pll programming for these tuners as per the datasheet.
Signed-off-by: Rusty Scott <rustys@ieee.org>
Signed-off-by: Mac Michaels <wmichaels1@earthlink.net>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/frontends')
-rw-r--r-- | linux/drivers/media/dvb/frontends/dvb-pll.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/dvb/frontends/dvb-pll.c b/linux/drivers/media/dvb/frontends/dvb-pll.c index b6e2c387a..791706ec1 100644 --- a/linux/drivers/media/dvb/frontends/dvb-pll.c +++ b/linux/drivers/media/dvb/frontends/dvb-pll.c @@ -235,8 +235,8 @@ struct dvb_pll_desc dvb_pll_tdvs_tua6034 = { .max = 863000000, .count = 3, .entries = { - { 160000000, 44000000, 62500, 0xce, 0x01 }, - { 455000000, 44000000, 62500, 0xce, 0x02 }, + { 165000000, 44000000, 62500, 0xce, 0x01 }, + { 450000000, 44000000, 62500, 0xce, 0x02 }, { 999999999, 44000000, 62500, 0xce, 0x04 }, }, }; |