diff options
author | Michael Krufky <mkrufky@linuxtv.org> | 2006-09-25 13:14:24 -0400 |
---|---|---|
committer | Michael Krufky <mkrufky@linuxtv.org> | 2006-09-25 13:14:24 -0400 |
commit | 9e37591ebf7dd9108a308b367cbe01f13c6b6b3c (patch) | |
tree | 66f1e6a9f2a1a347b9f1ca4836c42471b99e8a96 | |
parent | 8ad4a996f0de03ee5772c3db6680416a28cfc8a3 (diff) | |
download | mediapointer-dvb-s2-9e37591ebf7dd9108a308b367cbe01f13c6b6b3c.tar.gz mediapointer-dvb-s2-9e37591ebf7dd9108a308b367cbe01f13c6b6b3c.tar.bz2 |
cx88: autodetect Club3D Zap TV2100 by subsystem id 12ab:2300
From: Michael Krufky <mkrufky@linuxtv.org>
The Club3D Zap TV2100 has been reported to be a clone of the Yuan PG300 and
KWorld/VStream XPert DVB-T with cx22702
Thanks-to: Lars Gjesse Kjellberg <lars.g.kjellberg@get2net.dk>
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
-rw-r--r-- | linux/Documentation/video4linux/CARDLIST.cx88 | 2 | ||||
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-cards.c | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/linux/Documentation/video4linux/CARDLIST.cx88 b/linux/Documentation/video4linux/CARDLIST.cx88 index 669a09aa5..9d5dbc198 100644 --- a/linux/Documentation/video4linux/CARDLIST.cx88 +++ b/linux/Documentation/video4linux/CARDLIST.cx88 @@ -41,7 +41,7 @@ 40 -> Hauppauge WinTV-HVR1100 DVB-T/Hybrid [0070:9400,0070:9402] 41 -> Hauppauge WinTV-HVR1100 DVB-T/Hybrid (Low Profile) [0070:9800,0070:9802] 42 -> digitalnow DNTV Live! DVB-T Pro [1822:0025,1822:0019] - 43 -> KWorld/VStream XPert DVB-T with cx22702 [17de:08a1] + 43 -> KWorld/VStream XPert DVB-T with cx22702 [17de:08a1,12ab:2300] 44 -> DViCO FusionHDTV DVB-T Dual Digital [18ac:db50,18ac:db54] 45 -> KWorld HardwareMpegTV XPert [17de:0840] 46 -> DViCO FusionHDTV DVB-T Hybrid [18ac:db40,18ac:db44] diff --git a/linux/drivers/media/video/cx88/cx88-cards.c b/linux/drivers/media/video/cx88/cx88-cards.c index 27997e36f..9ac3f40e2 100644 --- a/linux/drivers/media/video/cx88/cx88-cards.c +++ b/linux/drivers/media/video/cx88/cx88-cards.c @@ -1615,6 +1615,10 @@ struct cx88_subid cx88_subids[] = { .subvendor = 0x107d, .subdevice = 0x6632, .card = CX88_BOARD_LEADTEK_PVR2000, + },{ + .subvendor = 0x12ab, + .subdevice = 0x2300, /* Club3D Zap TV2100 */ + .card = CX88_BOARD_KWORLD_DVB_T_CX22702, }, }; const unsigned int cx88_idcount = ARRAY_SIZE(cx88_subids); |