diff options
author | Gerd Knorr <devnull@localhost> | 2004-05-24 13:24:24 +0000 |
---|---|---|
committer | Gerd Knorr <devnull@localhost> | 2004-05-24 13:24:24 +0000 |
commit | ad011fef392d31cf6903f3d1115d80b4d1d78751 (patch) | |
tree | 2a92d13e54626ecc690263d22def8fc680cba3c8 /linux/drivers/media/video/cx88 | |
parent | 0742e1cfee70fd483f826027eadb5dcae97df1de (diff) | |
download | mediapointer-dvb-s2-ad011fef392d31cf6903f3d1115d80b4d1d78751.tar.gz mediapointer-dvb-s2-ad011fef392d31cf6903f3d1115d80b4d1d78751.tar.bz2 |
- cx88: add IODATA GV-VCP3/PCI by 河村直樹 (Kawamura Naoki).
- ir-common: update rc5 keytable.
Diffstat (limited to 'linux/drivers/media/video/cx88')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-cards.c | 23 | ||||
-rw-r--r-- | linux/drivers/media/video/cx88/cx88.h | 1 |
2 files changed, 21 insertions, 3 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-cards.c b/linux/drivers/media/video/cx88/cx88-cards.c index 3146f69a0..f5a5abca2 100644 --- a/linux/drivers/media/video/cx88/cx88-cards.c +++ b/linux/drivers/media/video/cx88/cx88-cards.c @@ -211,8 +211,21 @@ struct cx88_board cx88_boards[] = { .type = CX88_RADIO, }, }, - - + [CX88_BOARD_IODATA_GVVCP3PCI] = { + .name = "IODATA GV-VCP3/PCI", + .tuner_type = TUNER_ABSENT, + .needs_tda9887 = 0, + .input = {{ + .type = CX88_VMUX_COMPOSITE1, + .vmux = 0, + },{ + .type = CX88_VMUX_COMPOSITE2, + .vmux = 1, + },{ + .type = CX88_VMUX_SVIDEO, + .vmux = 2, + }}, + }, }; const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards); @@ -268,7 +281,11 @@ struct cx88_subid cx88_subids[] = { .subvendor = 0x1462, .subdevice = 0x8606, .card = CX88_BOARD_MSI_TVANYWHERE, - } + },{ + .subvendor = 0x10fc, + .subdevice = 0xd003, + .card = CX88_BOARD_IODATA_GVVCP3PCI, + } }; 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 96af2cdf3..9a94a566e 100644 --- a/linux/drivers/media/video/cx88/cx88.h +++ b/linux/drivers/media/video/cx88/cx88.h @@ -141,6 +141,7 @@ extern struct sram_channel cx88_sram_channels[]; #define CX88_BOARD_MSI_TVANYWHERE 7 #define CX88_BOARD_WINFAST_DV2000 8 #define CX88_BOARD_LEADTEK_PVR2000 9 +#define CX88_BOARD_IODATA_GVVCP3PCI 10 enum cx88_itype { |