diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2008-02-17 10:05:09 -0500 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2008-02-17 10:05:09 -0500 |
commit | ab463922055a65b4d5ee2e97d45290a76d940cb6 (patch) | |
tree | 7d7134c1c3ab420e76d939488c1a26bf558cd294 | |
parent | b403874cbdfd087977c999926197837a2f8ffcb9 (diff) | |
download | mediapointer-dvb-s2-ab463922055a65b4d5ee2e97d45290a76d940cb6.tar.gz mediapointer-dvb-s2-ab463922055a65b4d5ee2e97d45290a76d940cb6.tar.bz2 |
dvb-pll: remove support for Philips TUV1236D
From: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
-rw-r--r-- | linux/drivers/media/dvb/frontends/dvb-pll.c | 4 | ||||
-rw-r--r-- | linux/drivers/media/dvb/frontends/dvb-pll.h | 2 |
2 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 757b106b0..1c69ab1ed 100644 --- a/linux/drivers/media/dvb/frontends/dvb-pll.c +++ b/linux/drivers/media/dvb/frontends/dvb-pll.c @@ -400,6 +400,7 @@ static struct dvb_pll_desc dvb_pll_tdhu2 = { } }; +#if 0 /* Philips TUV1236D * used in ATI HDTV Wonder */ @@ -448,6 +449,7 @@ static struct dvb_pll_desc dvb_pll_tuv1236d = { { 999999999, 62500, 0xc6, 0x44 }, }, }; +#endif /* Samsung TBMV30111IN / TBMV30712IN1 * used in Air2PC ATSC - 2nd generation (nxt2002) @@ -619,7 +621,9 @@ static struct dvb_pll_desc *pll_list[] = { [DVB_PLL_FMD1216ME] = &dvb_pll_fmd1216me, #endif [DVB_PLL_TDED4] = &dvb_pll_tded4, +#if 0 [DVB_PLL_TUV1236D] = &dvb_pll_tuv1236d, +#endif [DVB_PLL_TDHU2] = &dvb_pll_tdhu2, [DVB_PLL_SAMSUNG_TBMV] = &dvb_pll_samsung_tbmv, [DVB_PLL_PHILIPS_SD1878_TDA8261] = &dvb_pll_philips_sd1878_tda8261, diff --git a/linux/drivers/media/dvb/frontends/dvb-pll.h b/linux/drivers/media/dvb/frontends/dvb-pll.h index a7bf28b1a..3b19d08fa 100644 --- a/linux/drivers/media/dvb/frontends/dvb-pll.h +++ b/linux/drivers/media/dvb/frontends/dvb-pll.h @@ -31,7 +31,9 @@ #define DVB_PLL_FMD1216ME 13 #endif #define DVB_PLL_TDED4 14 +#if 0 #define DVB_PLL_TUV1236D 15 +#endif #define DVB_PLL_TDHU2 16 #define DVB_PLL_SAMSUNG_TBMV 17 #define DVB_PLL_PHILIPS_SD1878_TDA8261 18 |