aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/dvb
diff options
context:
space:
mode:
authorMichael Krufky <mkrufky@linuxtv.org>2006-02-28 22:04:42 -0500
committerMauro Carvalho Chehab <mchehab@infradead.org>2006-03-08 09:37:29 -0500
commit91ae3299d7d3493a25e5f26cbaceeb18e7760ef3 (patch)
tree13bda3f740a6dba89fb74351295279aabbed1dce /drivers/media/dvb
parent69b27e3dfebff8f59e979d57263e1cd83c4d8370 (diff)
V4L/DVB (3411): FE6600 is a Thomson tuner
- The tuner used in DViCO FusionHDTV DVB-T hybrid is made by Thomson - renamed tuner and dvb_pll structs accordingly 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.c6
-rw-r--r--drivers/media/dvb/frontends/dvb-pll.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/media/dvb/frontends/dvb-pll.c b/drivers/media/dvb/frontends/dvb-pll.c
index 8a4c904d3a27..b6e2c387a04c 100644
--- a/drivers/media/dvb/frontends/dvb-pll.c
+++ b/drivers/media/dvb/frontends/dvb-pll.c
@@ -405,8 +405,8 @@ struct dvb_pll_desc dvb_pll_philips_td1316 = {
405EXPORT_SYMBOL(dvb_pll_philips_td1316); 405EXPORT_SYMBOL(dvb_pll_philips_td1316);
406 406
407/* FE6600 used on DViCO Hybrid */ 407/* FE6600 used on DViCO Hybrid */
408struct dvb_pll_desc dvb_pll_unknown_fe6600 = { 408struct dvb_pll_desc dvb_pll_thomson_fe6600 = {
409 .name = "FE6600", 409 .name = "Thomson FE6600",
410 .min = 44250000, 410 .min = 44250000,
411 .max = 858000000, 411 .max = 858000000,
412 .count = 4, 412 .count = 4,
@@ -417,7 +417,7 @@ struct dvb_pll_desc dvb_pll_unknown_fe6600 = {
417 { 999999999, 36213333, 166667, 0xf4, 0x18 }, 417 { 999999999, 36213333, 166667, 0xf4, 0x18 },
418 } 418 }
419}; 419};
420EXPORT_SYMBOL(dvb_pll_unknown_fe6600); 420EXPORT_SYMBOL(dvb_pll_thomson_fe6600);
421 421
422/* ----------------------------------------------------------- */ 422/* ----------------------------------------------------------- */
423/* code */ 423/* code */
diff --git a/drivers/media/dvb/frontends/dvb-pll.h b/drivers/media/dvb/frontends/dvb-pll.h
index 8a7f0b941c38..2b8461784989 100644
--- a/drivers/media/dvb/frontends/dvb-pll.h
+++ b/drivers/media/dvb/frontends/dvb-pll.h
@@ -42,7 +42,7 @@ extern struct dvb_pll_desc dvb_pll_samsung_tbmv;
42extern struct dvb_pll_desc dvb_pll_philips_sd1878_tda8261; 42extern struct dvb_pll_desc dvb_pll_philips_sd1878_tda8261;
43extern struct dvb_pll_desc dvb_pll_philips_td1316; 43extern struct dvb_pll_desc dvb_pll_philips_td1316;
44 44
45extern struct dvb_pll_desc dvb_pll_unknown_fe6600; 45extern struct dvb_pll_desc dvb_pll_thomson_fe6600;
46 46
47int dvb_pll_configure(struct dvb_pll_desc *desc, u8 *buf, 47int dvb_pll_configure(struct dvb_pll_desc *desc, u8 *buf,
48 u32 freq, int bandwidth); 48 u32 freq, int bandwidth);