diff options
author | Gerd Knorr <devnull@localhost> | 2004-11-30 11:26:38 +0000 |
---|---|---|
committer | Gerd Knorr <devnull@localhost> | 2004-11-30 11:26:38 +0000 |
commit | cec65069b7466d850408a58576dbff9a0ddbf782 (patch) | |
tree | 40933784bc061720d286b0dfd075e94a85944061 /linux/drivers/media/video/cx88 | |
parent | ae625623c832731a551768d5137323acb1e80259 (diff) | |
download | mediapointer-dvb-s2-cec65069b7466d850408a58576dbff9a0ddbf782.tar.gz mediapointer-dvb-s2-cec65069b7466d850408a58576dbff9a0ddbf782.tar.bz2 |
- add new tuners.
- ir support for Compro Videomate by Michael Mellor.
Diffstat (limited to 'linux/drivers/media/video/cx88')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-cards.c | 9 | ||||
-rw-r--r-- | linux/drivers/media/video/cx88/cx88.h | 3 |
2 files changed, 9 insertions, 3 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-cards.c b/linux/drivers/media/video/cx88/cx88-cards.c index a719d50b2..2c2ecb7e1 100644 --- a/linux/drivers/media/video/cx88/cx88-cards.c +++ b/linux/drivers/media/video/cx88/cx88-cards.c @@ -1,5 +1,5 @@ /* - * $Id: cx88-cards.c,v 1.49 2004/11/19 18:07:12 kraxel Exp $ + * $Id: cx88-cards.c,v 1.50 2004/11/30 11:26:38 kraxel Exp $ * * device driver for Conexant 2388x based TV cards * card-specific stuff. @@ -548,6 +548,10 @@ struct cx88_subid cx88_subids[] = { .subvendor = 0x1554, .subdevice = 0x4811, .card = CX88_BOARD_PIXELVIEW, + },{ + .subvendor = 0x7063, + .subdevice = 0x3000, /* HD-3000 card */ + .card = CX88_BOARD_PCHDTV_HD3000, } }; const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids); @@ -637,7 +641,8 @@ static struct { { TUNER_LG_PAL_FM, "LG TPI8PSB01D"}, { TUNER_LG_PAL, "LG TPI8PSB11D"}, { TUNER_LG_PAL_I_FM, "LG TAPC-I001D"}, - { TUNER_LG_PAL_I, "LG TAPC-I701D"} + { TUNER_LG_PAL_I, "LG TAPC-I701D"}, + { TUNER_THOMSON_DTT7610, "DTT-7610"} }; static void hauppauge_eeprom(struct cx88_core *core, u8 *eeprom_data) diff --git a/linux/drivers/media/video/cx88/cx88.h b/linux/drivers/media/video/cx88/cx88.h index ce82fa859..3d2b268d6 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.41 2004/11/23 17:29:09 kraxel Exp $ + * $Id: cx88.h,v 1.42 2004/11/30 11:26:38 kraxel Exp $ * * v4l2 device driver for cx2388x based TV cards * @@ -157,6 +157,7 @@ extern struct sram_channel cx88_sram_channels[]; #define CX88_BOARD_CONEXANT_DVB_T1 19 #define CX88_BOARD_PROVIDEO_PV259 20 #define CX88_BOARD_DVICO_FUSIONHDTV_DVB_T_PLUS 21 +#define CX88_BOARD_PCHDTV_HD3000 22 enum cx88_itype { CX88_VMUX_COMPOSITE1 = 1, |