diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2008-02-10 21:54:44 -0500 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2008-02-10 21:54:44 -0500 |
commit | 5d98f97482e9d8c6aa19586d7fa9ee7d4d9a6465 (patch) | |
tree | 54d8bde50fe90b6e5a1098a37c9607bb172183b8 /linux/drivers/media/dvb/frontends/dvb-pll.c | |
parent | 093c718999063bd0a62d41da41c23886cf4f4c64 (diff) | |
download | mediapointer-dvb-s2-5d98f97482e9d8c6aa19586d7fa9ee7d4d9a6465.tar.gz mediapointer-dvb-s2-5d98f97482e9d8c6aa19586d7fa9ee7d4d9a6465.tar.bz2 |
dvb-pll: remove support for Thomson dtt7610
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 ae5e48582..4cfb1ea38 100644 --- a/linux/drivers/media/dvb/frontends/dvb-pll.c +++ b/linux/drivers/media/dvb/frontends/dvb-pll.c @@ -113,6 +113,7 @@ static struct dvb_pll_desc dvb_pll_thomson_dtt7579 = { }, }; +#if 0 static struct dvb_pll_desc dvb_pll_thomson_dtt7610 = { .name = "Thomson dtt7610", .min = 44000000, @@ -125,6 +126,7 @@ static struct dvb_pll_desc dvb_pll_thomson_dtt7610 = { { 999999999, 62500, 0x8e, 0x3c }, }, }; +#endif static void thomson_dtt759x_bw(struct dvb_frontend *fe, u8 *buf, const struct dvb_frontend_parameters *params) @@ -585,7 +587,9 @@ static struct dvb_pll_desc *pll_list[] = { [DVB_PLL_UNDEFINED] = NULL, [DVB_PLL_THOMSON_DTT7579] = &dvb_pll_thomson_dtt7579, [DVB_PLL_THOMSON_DTT759X] = &dvb_pll_thomson_dtt759x, +#if 0 [DVB_PLL_THOMSON_DTT7610] = &dvb_pll_thomson_dtt7610, +#endif [DVB_PLL_LG_Z201] = &dvb_pll_lg_z201, [DVB_PLL_MICROTUNE_4042] = &dvb_pll_microtune_4042, [DVB_PLL_THOMSON_DTT761X] = &dvb_pll_thomson_dtt761x, |