diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2008-02-17 01:15:58 -0500 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2008-02-17 01:15:58 -0500 |
commit | eadf50746b892f01440061a866d6df67f780bba6 (patch) | |
tree | 886988abe9e79cd76887efe9c9cbe66603cc9675 /linux/drivers/media/dvb/frontends/dvb-pll.c | |
parent | a1ea7ac10e052e38be6348524f995d7232218533 (diff) | |
download | mediapointer-dvb-s2-eadf50746b892f01440061a866d6df67f780bba6.tar.gz mediapointer-dvb-s2-eadf50746b892f01440061a866d6df67f780bba6.tar.bz2 |
dvb-pll: remove support for LG TDVS-H06xF
From: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/frontends/dvb-pll.c')
-rw-r--r-- | linux/drivers/media/dvb/frontends/dvb-pll.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/linux/drivers/media/dvb/frontends/dvb-pll.c b/linux/drivers/media/dvb/frontends/dvb-pll.c index caba855dc..f33ebb103 100644 --- a/linux/drivers/media/dvb/frontends/dvb-pll.c +++ b/linux/drivers/media/dvb/frontends/dvb-pll.c @@ -81,6 +81,7 @@ struct dvb_pll_desc { /* ----------------------------------------------------------- */ /* descriptions */ +#if 0 /* Set AGC TOP value to 103 dBuV: 0x80 = Control Byte 0x40 = 250 uA charge pump (irrelevant) @@ -91,6 +92,7 @@ struct dvb_pll_desc { 0x00 = AGC Time constant 2s Iagc = 300 nA (vs 0x80 = 9 nA) 0x50 = AGC Take over point = 103 dBuV */ static u8 tua603x_agc103[] = { 2, 0x80|0x40|0x18|0x06|0x01, 0x00|0x50 }; +#endif /* 0x04 = 166.67 kHz divider @@ -306,6 +308,7 @@ static struct dvb_pll_desc dvb_pll_tua6034 = { }, }; +#if 0 /* Infineon TUA6034 * used in LG TDVS-H061F, LG TDVS-H062F and LG TDVS-H064F */ @@ -322,6 +325,7 @@ static struct dvb_pll_desc dvb_pll_lg_tdvs_h06xf = { { 999999999, 62500, 0xce, 0x04 }, }, }; +#endif /* Philips FMD1216ME * used in Medion Hybrid PCMCIA card and USB Box @@ -605,7 +609,9 @@ static struct dvb_pll_desc *pll_list[] = { [DVB_PLL_TUA6010XS] = &dvb_pll_tua6010xs, [DVB_PLL_ENV57H1XD5] = &dvb_pll_env57h1xd5, [DVB_PLL_TUA6034] = &dvb_pll_tua6034, +#if 0 [DVB_PLL_LG_TDVS_H06XF] = &dvb_pll_lg_tdvs_h06xf, +#endif [DVB_PLL_TDA665X] = &dvb_pll_tda665x, [DVB_PLL_FMD1216ME] = &dvb_pll_fmd1216me, [DVB_PLL_TDED4] = &dvb_pll_tded4, |