diff options
| -rw-r--r-- | Documentation/video4linux/CARDLIST.cx88 | 2 | ||||
| -rw-r--r-- | Documentation/video4linux/CARDLIST.tuner | 2 | ||||
| -rw-r--r-- | drivers/media/video/cx88/cx88-cards.c | 21 | ||||
| -rw-r--r-- | drivers/media/video/cx88/cx88.h | 2 |
4 files changed, 8 insertions, 19 deletions
diff --git a/Documentation/video4linux/CARDLIST.cx88 b/Documentation/video4linux/CARDLIST.cx88 index a87f752e5411..216f705495cc 100644 --- a/Documentation/video4linux/CARDLIST.cx88 +++ b/Documentation/video4linux/CARDLIST.cx88 | |||
| @@ -26,4 +26,4 @@ card=24 - Hauppauge WinTV 28xxx (Roslyn) models | |||
| 26 | card=25 - Digital-Logic MICROSPACE Entertainment Center (MEC) | 26 | card=25 - Digital-Logic MICROSPACE Entertainment Center (MEC) |
| 27 | card=26 - IODATA GV/BCTV7E | 27 | card=26 - IODATA GV/BCTV7E |
| 28 | card=27 - PixelView PlayTV Ultra Pro (Stereo) | 28 | card=27 - PixelView PlayTV Ultra Pro (Stereo) |
| 29 | card=28 - DViCO - FusionHDTV 3 Gold-Q | 29 | card=28 - DViCO - FusionHDTV 3 Gold-T |
diff --git a/Documentation/video4linux/CARDLIST.tuner b/Documentation/video4linux/CARDLIST.tuner index 7f4fd0de4412..aeb8df8ce890 100644 --- a/Documentation/video4linux/CARDLIST.tuner +++ b/Documentation/video4linux/CARDLIST.tuner | |||
| @@ -58,4 +58,4 @@ tuner=56 - Philips PAL/SECAM multi (FQ1216AME MK4) | |||
| 58 | tuner=57 - Philips FQ1236A MK4 | 58 | tuner=57 - Philips FQ1236A MK4 |
| 59 | tuner=58 - Ymec TVision TVF-8531MF | 59 | tuner=58 - Ymec TVision TVF-8531MF |
| 60 | tuner=59 - Ymec TVision TVF-5533MF | 60 | tuner=59 - Ymec TVision TVF-5533MF |
| 61 | tuner=60 - Thomson DDT 7611 | 61 | tuner=60 - Thomson DDT 7611 (ATSC/NTSC) |
diff --git a/drivers/media/video/cx88/cx88-cards.c b/drivers/media/video/cx88/cx88-cards.c index 1c036cc36fe1..c3a561e38e54 100644 --- a/drivers/media/video/cx88/cx88-cards.c +++ b/drivers/media/video/cx88/cx88-cards.c | |||
| @@ -428,16 +428,11 @@ struct cx88_board cx88_boards[] = { | |||
| 428 | .vmux = 2, | 428 | .vmux = 2, |
| 429 | .gpio0 = 0x0f00, | 429 | .gpio0 = 0x0f00, |
| 430 | }}, | 430 | }}, |
| 431 | #if 0 | ||
| 432 | .ts = { | ||
| 433 | .type = CX88_TS, | ||
| 434 | .gpio0 = 0x00000f01, /* Hooked to tuner reset bit */ | ||
| 435 | } | ||
| 436 | #endif | ||
| 437 | }, | 431 | }, |
| 438 | [CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q] = { | 432 | [CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T] = { |
| 439 | .name = "DViCO - FusionHDTV 3 Gold-Q", | 433 | .name = "DViCO - FusionHDTV 3 Gold-T", |
| 440 | .tuner_type = 52, /* Thomson DDT 7610 ATSC/NTSC - Its actually a 7611 chip, but this works */ | 434 | .tuner_type = 52, /* Thomson DDT 7611 ATSC/NTSC */ |
| 435 | /* See DViCO FusionHDTV 3 Gold for GPIO documentation. */ | ||
| 441 | .input = {{ | 436 | .input = {{ |
| 442 | .type = CX88_VMUX_TELEVISION, | 437 | .type = CX88_VMUX_TELEVISION, |
| 443 | .vmux = 0, | 438 | .vmux = 0, |
| @@ -455,12 +450,6 @@ struct cx88_board cx88_boards[] = { | |||
| 455 | .vmux = 2, | 450 | .vmux = 2, |
| 456 | .gpio0 = 0x0f00, | 451 | .gpio0 = 0x0f00, |
| 457 | }}, | 452 | }}, |
| 458 | #if 0 | ||
| 459 | .ts = { | ||
| 460 | .type = CX88_TS, | ||
| 461 | .gpio0 = 0x00000f01, /* Hooked to tuner reset bit */ | ||
| 462 | } | ||
| 463 | #endif | ||
| 464 | }, | 453 | }, |
| 465 | [CX88_BOARD_HAUPPAUGE_DVB_T1] = { | 454 | [CX88_BOARD_HAUPPAUGE_DVB_T1] = { |
| 466 | .name = "Hauppauge Nova-T DVB-T", | 455 | .name = "Hauppauge Nova-T DVB-T", |
| @@ -723,7 +712,7 @@ struct cx88_subid cx88_subids[] = { | |||
| 723 | },{ | 712 | },{ |
| 724 | .subvendor = 0x18ac, | 713 | .subvendor = 0x18ac, |
| 725 | .subdevice = 0xd820, | 714 | .subdevice = 0xd820, |
| 726 | .card = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q, | 715 | .card = CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T, |
| 727 | },{ | 716 | },{ |
| 728 | .subvendor = 0x18AC, | 717 | .subvendor = 0x18AC, |
| 729 | .subdevice = 0xDB00, | 718 | .subdevice = 0xDB00, |
diff --git a/drivers/media/video/cx88/cx88.h b/drivers/media/video/cx88/cx88.h index 7fca1f500c56..80ddf9911e2f 100644 --- a/drivers/media/video/cx88/cx88.h +++ b/drivers/media/video/cx88/cx88.h | |||
| @@ -163,7 +163,7 @@ extern struct sram_channel cx88_sram_channels[]; | |||
| 163 | #define CX88_BOARD_DIGITALLOGIC_MEC 25 | 163 | #define CX88_BOARD_DIGITALLOGIC_MEC 25 |
| 164 | #define CX88_BOARD_IODATA_GVBCTV7E 26 | 164 | #define CX88_BOARD_IODATA_GVBCTV7E 26 |
| 165 | #define CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO 27 | 165 | #define CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO 27 |
| 166 | #define CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_Q 28 | 166 | #define CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD_T 28 |
| 167 | 167 | ||
| 168 | enum cx88_itype { | 168 | enum cx88_itype { |
| 169 | CX88_VMUX_COMPOSITE1 = 1, | 169 | CX88_VMUX_COMPOSITE1 = 1, |
