diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2008-02-10 22:30:03 -0500 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2008-02-10 22:30:03 -0500 |
commit | 6ba8b8a90087a0efb26f833af5a495031a08bcfa (patch) | |
tree | d07cdbb7180cad66d8506feb8ea287fee0360192 /linux/drivers/media/dvb/frontends/dvb-pll.c | |
parent | ca1d4d371cf6260307dd6e50178c4930669e547d (diff) | |
download | mediapointer-dvb-s2-6ba8b8a90087a0efb26f833af5a495031a08bcfa.tar.gz mediapointer-dvb-s2-6ba8b8a90087a0efb26f833af5a495031a08bcfa.tar.bz2 |
dvb-pll: remove support for Thomson FE6600
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 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/linux/drivers/media/dvb/frontends/dvb-pll.c b/linux/drivers/media/dvb/frontends/dvb-pll.c index fea438ec2..dab160f1b 100644 --- a/linux/drivers/media/dvb/frontends/dvb-pll.c +++ b/linux/drivers/media/dvb/frontends/dvb-pll.c @@ -524,6 +524,7 @@ static struct dvb_pll_desc dvb_pll_philips_td1316 = { }, }; +#if 0 /* FE6600 used on DViCO Hybrid */ static struct dvb_pll_desc dvb_pll_thomson_fe6600 = { .name = "Thomson FE6600", @@ -538,6 +539,7 @@ static struct dvb_pll_desc dvb_pll_thomson_fe6600 = { { 999999999, 166667, 0xf4, 0x18 }, } }; +#endif static void opera1_bw(struct dvb_frontend *fe, u8 *buf, const struct dvb_frontend_parameters *params) @@ -610,7 +612,9 @@ static struct dvb_pll_desc *pll_list[] = { [DVB_PLL_SAMSUNG_TBMV] = &dvb_pll_samsung_tbmv, [DVB_PLL_PHILIPS_SD1878_TDA8261] = &dvb_pll_philips_sd1878_tda8261, [DVB_PLL_PHILIPS_TD1316] = &dvb_pll_philips_td1316, +#if 0 [DVB_PLL_THOMSON_FE6600] = &dvb_pll_thomson_fe6600, +#endif [DVB_PLL_OPERA1] = &dvb_pll_opera1, [DVB_PLL_FCV1236D] = &dvb_pll_fcv1236d, }; |