diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2008-02-10 23:11:52 -0500 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2008-02-10 23:11:52 -0500 |
commit | a1ea7ac10e052e38be6348524f995d7232218533 (patch) | |
tree | 66cf9711640305ebaa4536605277ed6b93dc501e /linux/drivers/media/dvb/frontends | |
parent | 6ba8b8a90087a0efb26f833af5a495031a08bcfa (diff) | |
download | mediapointer-dvb-s2-a1ea7ac10e052e38be6348524f995d7232218533.tar.gz mediapointer-dvb-s2-a1ea7ac10e052e38be6348524f995d7232218533.tar.bz2 |
dvb-pll: remove support for Philips FCV1236D
From: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Diffstat (limited to 'linux/drivers/media/dvb/frontends')
-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 dab160f1b..caba855dc 100644 --- a/linux/drivers/media/dvb/frontends/dvb-pll.c +++ b/linux/drivers/media/dvb/frontends/dvb-pll.c @@ -567,6 +567,7 @@ static struct dvb_pll_desc dvb_pll_opera1 = { } }; +#if 0 /* Philips FCV1236D */ static struct dvb_pll_desc dvb_pll_fcv1236d = { @@ -584,6 +585,7 @@ static struct dvb_pll_desc dvb_pll_fcv1236d = { { 999999999, 62500, 0x8e, 0x30 }, }, }; +#endif /* ----------------------------------------------------------- */ @@ -616,7 +618,9 @@ static struct dvb_pll_desc *pll_list[] = { [DVB_PLL_THOMSON_FE6600] = &dvb_pll_thomson_fe6600, #endif [DVB_PLL_OPERA1] = &dvb_pll_opera1, +#if 0 [DVB_PLL_FCV1236D] = &dvb_pll_fcv1236d, +#endif }; /* ----------------------------------------------------------- */ diff --git a/linux/drivers/media/dvb/frontends/dvb-pll.h b/linux/drivers/media/dvb/frontends/dvb-pll.h index 1782f12d7..c460c6288 100644 --- a/linux/drivers/media/dvb/frontends/dvb-pll.h +++ b/linux/drivers/media/dvb/frontends/dvb-pll.h @@ -36,7 +36,9 @@ #define DVB_PLL_THOMSON_FE6600 20 #endif #define DVB_PLL_OPERA1 21 +#if 0 #define DVB_PLL_FCV1236D 22 +#endif /** * Attach a dvb-pll to the supplied frontend structure. |