diff options
author | Johannes Stezenbach <devnull@localhost> | 2005-07-17 21:00:46 +0000 |
---|---|---|
committer | Johannes Stezenbach <devnull@localhost> | 2005-07-17 21:00:46 +0000 |
commit | 971d4d9642a2b85f48b116db19f145605cd84c75 (patch) | |
tree | 53a18ed5ee8d9550bb1041c78c0bc2eb167e423d /linux/drivers/media/dvb/frontends | |
parent | 391d4cd90aa042cb74343b3383f4d6c7985c0951 (diff) | |
download | mediapointer-dvb-s2-971d4d9642a2b85f48b116db19f145605cd84c75.tar.gz mediapointer-dvb-s2-971d4d9642a2b85f48b116db19f145605cd84c75.tar.bz2 |
From: Gregory B Frost <frosts1@hotkey.net.au>
Fix the way the LG-Z201 tuner is controlled for the DVICO
FusionHDTV DVB-T1 card.
Signed-off-by: Gregory B Frost <frosts1@hotkey.net.au>
Diffstat (limited to 'linux/drivers/media/dvb/frontends')
-rw-r--r-- | linux/drivers/media/dvb/frontends/dvb-pll.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/linux/drivers/media/dvb/frontends/dvb-pll.c b/linux/drivers/media/dvb/frontends/dvb-pll.c index 5afeaa9b4..5264310c0 100644 --- a/linux/drivers/media/dvb/frontends/dvb-pll.c +++ b/linux/drivers/media/dvb/frontends/dvb-pll.c @@ -82,13 +82,14 @@ struct dvb_pll_desc dvb_pll_lg_z201 = { .name = "LG z201", .min = 174000000, .max = 862000000, - .count = 5, + .count = 6, .entries = { { 0, 36166667, 166666, 0xbc, 0x03 }, - { 443250000, 36166667, 166666, 0xbc, 0x01 }, - { 542000000, 36166667, 166666, 0xbc, 0x02 }, - { 830000000, 36166667, 166666, 0xf4, 0x02 }, - { 999999999, 36166667, 166666, 0xfc, 0x02 }, + { 157500000, 36166667, 166666, 0xbc, 0x01 }, + { 443250000, 36166667, 166666, 0xbc, 0x02 }, + { 542000000, 36166667, 166666, 0xbc, 0x04 }, + { 830000000, 36166667, 166666, 0xf4, 0x04 }, + { 999999999, 36166667, 166666, 0xfc, 0x04 }, }, }; EXPORT_SYMBOL(dvb_pll_lg_z201); |