aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video
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/video
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/video')
-rw-r--r--drivers/media/video/cx88/cx88-cards.c2
-rw-r--r--drivers/media/video/cx88/cx88-dvb.c2
-rw-r--r--drivers/media/video/tuner-types.c16
3 files changed, 10 insertions, 10 deletions
diff --git a/drivers/media/video/cx88/cx88-cards.c b/drivers/media/video/cx88/cx88-cards.c
index f655567a8ecd..c0d1f0b12829 100644
--- a/drivers/media/video/cx88/cx88-cards.c
+++ b/drivers/media/video/cx88/cx88-cards.c
@@ -1073,7 +1073,7 @@ struct cx88_board cx88_boards[] = {
1073 }, 1073 },
1074 [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID] = { 1074 [CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID] = {
1075 .name = "DViCO FusionHDTV DVB-T Hybrid", 1075 .name = "DViCO FusionHDTV DVB-T Hybrid",
1076 .tuner_type = TUNER_FE6600, 1076 .tuner_type = TUNER_THOMSON_FE6600,
1077 .radio_type = UNSET, 1077 .radio_type = UNSET,
1078 .tuner_addr = ADDR_UNSET, 1078 .tuner_addr = ADDR_UNSET,
1079 .radio_addr = ADDR_UNSET, 1079 .radio_addr = ADDR_UNSET,
diff --git a/drivers/media/video/cx88/cx88-dvb.c b/drivers/media/video/cx88/cx88-dvb.c
index 2c97d3f7101a..a9fc2695b157 100644
--- a/drivers/media/video/cx88/cx88-dvb.c
+++ b/drivers/media/video/cx88/cx88-dvb.c
@@ -599,7 +599,7 @@ static int dvb_register(struct cx8802_dev *dev)
599#ifdef HAVE_ZL10353 599#ifdef HAVE_ZL10353
600 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID: 600 case CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_HYBRID:
601 dev->core->pll_addr = 0x61; 601 dev->core->pll_addr = 0x61;
602 dev->core->pll_desc = &dvb_pll_unknown_fe6600; 602 dev->core->pll_desc = &dvb_pll_thomson_fe6600;
603 dev->dvb.frontend = zl10353_attach(&dvico_fusionhdtv_hybrid, 603 dev->dvb.frontend = zl10353_attach(&dvico_fusionhdtv_hybrid,
604 &dev->core->i2c_adap); 604 &dev->core->i2c_adap);
605 break; 605 break;
diff --git a/drivers/media/video/tuner-types.c b/drivers/media/video/tuner-types.c
index d10cfd400f2b..db8b9873029b 100644
--- a/drivers/media/video/tuner-types.c
+++ b/drivers/media/video/tuner-types.c
@@ -983,19 +983,19 @@ static struct tuner_params tuner_samsung_tcpn_2121p30a_params[] = {
983 }, 983 },
984}; 984};
985 985
986/* ------------ TUNER_FE6600 - DViCO Hybrid PAL ------------ */ 986/* ------------ TUNER_THOMSON_FE6600 - DViCO Hybrid PAL ------------ */
987 987
988static struct tuner_range tuner_fe6600_ranges[] = { 988static struct tuner_range tuner_thomson_fe6600_ranges[] = {
989 { 16 * 160.00 /*MHz*/, 0xfe, 0x11, }, 989 { 16 * 160.00 /*MHz*/, 0xfe, 0x11, },
990 { 16 * 442.00 /*MHz*/, 0xf6, 0x12, }, 990 { 16 * 442.00 /*MHz*/, 0xf6, 0x12, },
991 { 16 * 999.99 , 0xf6, 0x18, }, 991 { 16 * 999.99 , 0xf6, 0x18, },
992}; 992};
993 993
994static struct tuner_params tuner_fe6600_params[] = { 994static struct tuner_params tuner_thomson_fe6600_params[] = {
995 { 995 {
996 .type = TUNER_PARAM_TYPE_PAL, 996 .type = TUNER_PARAM_TYPE_PAL,
997 .ranges = tuner_fe6600_ranges, 997 .ranges = tuner_thomson_fe6600_ranges,
998 .count = ARRAY_SIZE(tuner_fe6600_ranges), 998 .count = ARRAY_SIZE(tuner_thomson_fe6600_ranges),
999 }, 999 },
1000}; 1000};
1001 1001
@@ -1370,9 +1370,9 @@ struct tunertype tuners[] = {
1370 .name = "Xceive xc3028", 1370 .name = "Xceive xc3028",
1371 /* see xc3028.c for details */ 1371 /* see xc3028.c for details */
1372 }, 1372 },
1373 [TUNER_FE6600] = { /* */ 1373 [TUNER_THOMSON_FE6600] = { /* Thomson PAL / DVB-T */
1374 .name = "FE6600", 1374 .name = "Thomson FE6600",
1375 .params = tuner_fe6600_params, 1375 .params = tuner_thomson_fe6600_params,
1376 }, 1376 },
1377}; 1377};
1378 1378