aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2008-04-22 13:46:19 -0400
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-04-24 13:07:54 -0400
commit75a791925da909d489ef323e3a540ad1f1bca54f (patch)
tree3dbaec323370f9d3f61169d212c271b55fd01666 /drivers/media/dvb
parent89418750f71b5b9bed7bd2bd8572fc54b049e1d5 (diff)
V4L/DVB (7421): dvb-pll: remove support for LG TDVS-H06xF
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/dvb')
-rw-r--r--drivers/media/dvb/frontends/dvb-pll.c27
-rw-r--r--drivers/media/dvb/frontends/dvb-pll.h1
2 files changed, 0 insertions, 28 deletions
diff --git a/drivers/media/dvb/frontends/dvb-pll.c b/drivers/media/dvb/frontends/dvb-pll.c
index 60801f75edb6..7a25f872c094 100644
--- a/drivers/media/dvb/frontends/dvb-pll.c
+++ b/drivers/media/dvb/frontends/dvb-pll.c
@@ -80,16 +80,6 @@ struct dvb_pll_desc {
80/* ----------------------------------------------------------- */ 80/* ----------------------------------------------------------- */
81/* descriptions */ 81/* descriptions */
82 82
83/* Set AGC TOP value to 103 dBuV:
84 0x80 = Control Byte
85 0x40 = 250 uA charge pump (irrelevant)
86 0x18 = Aux Byte to follow
87 0x06 = 64.5 kHz divider (irrelevant)
88 0x01 = Disable Vt (aka sleep)
89
90 0x00 = AGC Time constant 2s Iagc = 300 nA (vs 0x80 = 9 nA)
91 0x50 = AGC Take over point = 103 dBuV */
92static u8 tua603x_agc103[] = { 2, 0x80|0x40|0x18|0x06|0x01, 0x00|0x50 };
93 83
94/* 0x04 = 166.67 kHz divider 84/* 0x04 = 166.67 kHz divider
95 85
@@ -262,22 +252,6 @@ static struct dvb_pll_desc dvb_pll_tua6034 = {
262 }, 252 },
263}; 253};
264 254
265/* Infineon TUA6034
266 * used in LG TDVS-H061F, LG TDVS-H062F and LG TDVS-H064F
267 */
268static struct dvb_pll_desc dvb_pll_lg_tdvs_h06xf = {
269 .name = "LG TDVS-H06xF",
270 .min = 54000000,
271 .max = 863000000,
272 .iffreq= 44000000,
273 .initdata = tua603x_agc103,
274 .count = 3,
275 .entries = {
276 { 165000000, 62500, 0xce, 0x01 },
277 { 450000000, 62500, 0xce, 0x02 },
278 { 999999999, 62500, 0xce, 0x04 },
279 },
280};
281 255
282/* Philips FMD1216ME 256/* Philips FMD1216ME
283 * used in Medion Hybrid PCMCIA card and USB Box 257 * used in Medion Hybrid PCMCIA card and USB Box
@@ -519,7 +493,6 @@ static struct dvb_pll_desc *pll_list[] = {
519 [DVB_PLL_TUA6010XS] = &dvb_pll_tua6010xs, 493 [DVB_PLL_TUA6010XS] = &dvb_pll_tua6010xs,
520 [DVB_PLL_ENV57H1XD5] = &dvb_pll_env57h1xd5, 494 [DVB_PLL_ENV57H1XD5] = &dvb_pll_env57h1xd5,
521 [DVB_PLL_TUA6034] = &dvb_pll_tua6034, 495 [DVB_PLL_TUA6034] = &dvb_pll_tua6034,
522 [DVB_PLL_LG_TDVS_H06XF] = &dvb_pll_lg_tdvs_h06xf,
523 [DVB_PLL_TDA665X] = &dvb_pll_tda665x, 496 [DVB_PLL_TDA665X] = &dvb_pll_tda665x,
524 [DVB_PLL_FMD1216ME] = &dvb_pll_fmd1216me, 497 [DVB_PLL_FMD1216ME] = &dvb_pll_fmd1216me,
525 [DVB_PLL_TDED4] = &dvb_pll_tded4, 498 [DVB_PLL_TDED4] = &dvb_pll_tded4,
diff --git a/drivers/media/dvb/frontends/dvb-pll.h b/drivers/media/dvb/frontends/dvb-pll.h
index df9aab9bd497..ec50671907a1 100644
--- a/drivers/media/dvb/frontends/dvb-pll.h
+++ b/drivers/media/dvb/frontends/dvb-pll.h
@@ -16,7 +16,6 @@
16#define DVB_PLL_TUA6010XS 8 16#define DVB_PLL_TUA6010XS 8
17#define DVB_PLL_ENV57H1XD5 9 17#define DVB_PLL_ENV57H1XD5 9
18#define DVB_PLL_TUA6034 10 18#define DVB_PLL_TUA6034 10
19#define DVB_PLL_LG_TDVS_H06XF 11
20#define DVB_PLL_TDA665X 12 19#define DVB_PLL_TDA665X 12
21#define DVB_PLL_FMD1216ME 13 20#define DVB_PLL_FMD1216ME 13
22#define DVB_PLL_TDED4 14 21#define DVB_PLL_TDED4 14