diff options
author | Nickolay V. Shmyrev <devnull@localhost> | 2005-10-04 14:33:12 +0000 |
---|---|---|
committer | Nickolay V. Shmyrev <devnull@localhost> | 2005-10-04 14:33:12 +0000 |
commit | fddcdbf06c4c6b3f704c95f61788afc84b3d2b53 (patch) | |
tree | e73850a353c3d61f79acf5a9335220ab92eb4dcb /linux/drivers/media/video | |
parent | dc51290deb085028781811432f2d20ccd5e42ea3 (diff) | |
download | mediapointer-dvb-s2-fddcdbf06c4c6b3f704c95f61788afc84b3d2b53.tar.gz mediapointer-dvb-s2-fddcdbf06c4c6b3f704c95f61788afc84b3d2b53.tar.bz2 |
* cx88-cards.c:
* cx88.h:
- Added Kworld Vstream ExpertDVD.
Signed-off-by: Alexander Wold <awold@bigfoot.com>
Diffstat (limited to 'linux/drivers/media/video')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-cards.c | 22 | ||||
-rw-r--r-- | linux/drivers/media/video/cx88/cx88.h | 3 |
2 files changed, 23 insertions, 2 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-cards.c b/linux/drivers/media/video/cx88/cx88-cards.c index 9815937ce..79b87e7b7 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.96 2005/09/05 15:58:07 mkrufky Exp $ + * $Id: cx88-cards.c,v 1.97 2005/10/04 14:33:12 nsh Exp $ * * device driver for Conexant 2388x based TV cards * card-specific stuff. @@ -805,6 +805,26 @@ struct cx88_board cx88_boards[] = { .gpio0 = 0x0000cdf3, }, }, + [CX88_BOARD_KWORLD_VSTREAM_EXPERT_DVD] = { + /* Alexander Wold <awold@bigfoot.com> */ + .name = "Kworld V-Stream Xpert DVD", + .tuner_type = UNSET, + .input = {{ + .type = CX88_VMUX_COMPOSITE1, + .vmux = 1, + .gpio0 = 0x03000000, + .gpio1 = 0x01000000, + .gpio2 = 0x02000000, + .gpio3 = 0x00100000, + },{ + .type = CX88_VMUX_SVIDEO, + .vmux = 2, + .gpio0 = 0x03000000, + .gpio1 = 0x01000000, + .gpio2 = 0x02000000, + .gpio3 = 0x00100000, + }}, + }, }; const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards); diff --git a/linux/drivers/media/video/cx88/cx88.h b/linux/drivers/media/video/cx88/cx88.h index c23478890..6436da9be 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.80 2005/09/11 04:58:14 mkrufky Exp $ + * $Id: cx88.h,v 1.81 2005/10/04 14:33:12 nsh Exp $ * * v4l2 device driver for cx2388x based TV cards * @@ -180,6 +180,7 @@ extern struct sram_channel cx88_sram_channels[]; #define CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1 30 #define CX88_BOARD_DVICO_FUSIONHDTV_5_GOLD 31 #define CX88_BOARD_AVERMEDIA_ULTRATV_MC_550 32 +#define CX88_BOARD_KWORLD_VSTREAM_EXPERT_DVD 33 enum cx88_itype { CX88_VMUX_COMPOSITE1 = 1, |