diff options
author | Manenti Marco <marco_manenti@colman.it> | 2006-01-09 12:32:45 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@brturbo.com.br> | 2006-01-09 12:32:45 -0500 |
commit | f39624fda00d2a30d31f0fa06153e9b460295676 (patch) | |
tree | 65d1637c0ee1b893c75bd18bef5d337d0bb836cf /drivers/media/video/cx88/cx88-cards.c | |
parent | b7f355d23c34399ccfd54fd613c306ab4a788234 (diff) |
V4L/DVB (3294): Add Kworld/Vstream Xpert DVB-T card with cx22702 tuner.
- Add Kworld/Vstream Xpert DVB-T card with cx22702 tuner.
Signed-off-by: Manenti Marco <marco_manenti@colman.it>
Signed-off-by: Nickolay V. Shmyrev <nshmyrev@yandex.ru>
Signed-off-by: Mauro Carvalho Chehab <mchehab@brturbo.com.br>
Diffstat (limited to 'drivers/media/video/cx88/cx88-cards.c')
-rw-r--r-- | drivers/media/video/cx88/cx88-cards.c | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/drivers/media/video/cx88/cx88-cards.c b/drivers/media/video/cx88/cx88-cards.c index 6b17d1e1e520..ae2fdf62c8ba 100644 --- a/drivers/media/video/cx88/cx88-cards.c +++ b/drivers/media/video/cx88/cx88-cards.c | |||
@@ -1009,6 +1009,29 @@ struct cx88_board cx88_boards[] = { | |||
1009 | }, | 1009 | }, |
1010 | .dvb = 1, | 1010 | .dvb = 1, |
1011 | }, | 1011 | }, |
1012 | [CX88_BOARD_KWORLD_DVB_T_CX22702] = { | ||
1013 | /* Kworld V-stream Xpert DVB-T with Thomson tuner */ | ||
1014 | /* DTT 7579 Conexant CX22702-19 Conexant CX2388x */ | ||
1015 | /* Manenti Marco <marco_manenti@colman.it> */ | ||
1016 | .name = "KWorld/VStream XPert DVB-T with cx22702", | ||
1017 | .tuner_type = TUNER_ABSENT, | ||
1018 | .radio_type = UNSET, | ||
1019 | .tuner_addr = ADDR_UNSET, | ||
1020 | .radio_addr = ADDR_UNSET, | ||
1021 | .input = {{ | ||
1022 | .type = CX88_VMUX_COMPOSITE1, | ||
1023 | .vmux = 1, | ||
1024 | .gpio0 = 0x0700, | ||
1025 | .gpio2 = 0x0101, | ||
1026 | },{ | ||
1027 | .type = CX88_VMUX_SVIDEO, | ||
1028 | .vmux = 2, | ||
1029 | .gpio0 = 0x0700, | ||
1030 | .gpio2 = 0x0101, | ||
1031 | }}, | ||
1032 | .dvb = 1, | ||
1033 | }, | ||
1034 | |||
1012 | }; | 1035 | }; |
1013 | const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards); | 1036 | const unsigned int cx88_bcount = ARRAY_SIZE(cx88_boards); |
1014 | 1037 | ||
@@ -1196,7 +1219,11 @@ struct cx88_subid cx88_subids[] = { | |||
1196 | .subvendor = 0x1822, | 1219 | .subvendor = 0x1822, |
1197 | .subdevice = 0x0025, | 1220 | .subdevice = 0x0025, |
1198 | .card = CX88_BOARD_DNTV_LIVE_DVB_T_PRO, | 1221 | .card = CX88_BOARD_DNTV_LIVE_DVB_T_PRO, |
1199 | }, | 1222 | },{ |
1223 | .subvendor = 0x17de, | ||
1224 | .subdevice = 0x08a1, | ||
1225 | .card = CX88_BOARD_KWORLD_DVB_T_CX22702, | ||
1226 | } | ||
1200 | }; | 1227 | }; |
1201 | const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids); | 1228 | const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids); |
1202 | 1229 | ||