diff options
author | Gerd Knorr <devnull@localhost> | 2004-09-06 09:25:29 +0000 |
---|---|---|
committer | Gerd Knorr <devnull@localhost> | 2004-09-06 09:25:29 +0000 |
commit | 05f9a06beff29d379571d105e161d99ffff72b03 (patch) | |
tree | c70d3661b45874282a37b216ba27867e859156e3 /linux/drivers/media/video/cx88 | |
parent | 00809cd196b2a808d5b3f3f9d88496778e2389d8 (diff) | |
download | mediapointer-dvb-s2-05f9a06beff29d379571d105e161d99ffff72b03.tar.gz mediapointer-dvb-s2-05f9a06beff29d379571d105e161d99ffff72b03.tar.bz2 |
- bttv: add DVICO FusionHDTV DVB-T Lite (Christopher Pascoe).
- cx88: add Hauppuage Nova-T DVB-t (Steve Toth).
Diffstat (limited to 'linux/drivers/media/video/cx88')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-cards.c | 15 | ||||
-rw-r--r-- | linux/drivers/media/video/cx88/cx88.h | 3 |
2 files changed, 16 insertions, 2 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-cards.c b/linux/drivers/media/video/cx88/cx88-cards.c index 25fe03d86..07ef5ab25 100644 --- a/linux/drivers/media/video/cx88/cx88-cards.c +++ b/linux/drivers/media/video/cx88/cx88-cards.c @@ -385,6 +385,15 @@ struct cx88_board cx88_boards[] = { } #endif }, + [CX88_BOARD_HAUPPAUGE_DVB_T1] = { + .name = "Hauppuage Nova-T DVB-t", + .tuner_type = UNSET, + .input = {{ + .type = CX88_VMUX_DVB, + .vmux = 0, + }}, + .dvb = 1, + }, }; const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards); @@ -460,7 +469,11 @@ struct cx88_subid cx88_subids[] = { .subvendor = 0x18AC, .subdevice = 0xDB00, .card = CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1, - } + },{ + .subvendor = 0x0070, + .subdevice = 0x9002, + .card = CX88_BOARD_HAUPPAUGE_DVB_T1, + } }; const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids); diff --git a/linux/drivers/media/video/cx88/cx88.h b/linux/drivers/media/video/cx88/cx88.h index 4cfa4a698..0a2023f4c 100644 --- a/linux/drivers/media/video/cx88/cx88.h +++ b/linux/drivers/media/video/cx88/cx88.h @@ -1,5 +1,5 @@ /* - * $Id: cx88.h,v 1.29 2004/09/03 09:25:23 kraxel Exp $ + * $Id: cx88.h,v 1.30 2004/09/06 09:25:29 kraxel Exp $ * * v4l2 device driver for cx2388x based TV cards * @@ -165,6 +165,7 @@ extern struct sram_channel cx88_sram_channels[]; #define CX88_BOARD_DVICO_FUSIONHDTV_DVB_T1 15 #define CX88_BOARD_KWORLD_LTV883 16 #define CX88_BOARD_DVICO_FUSIONHDTV_3_GOLD 17 +#define CX88_BOARD_HAUPPAUGE_DVB_T1 18 enum cx88_itype { CX88_VMUX_COMPOSITE1 = 1, |