Lars Gjesse Kjellberg wrote:
> I happen to own a DVB-T receiver card of the abovementioned type. I can see 
> from the output of dmesg that it reports itself as subsystem 12ab:2300, which 
> is not recognized by the current cx88 driver. From a previous thread on this 
> list I could recognize that the PCI subsystem ID is identical to a card of 
> type Yuan PG300, which was reported to work using option 'card=43'. I can 
> confirm that Club3D Zap TV2100 also works using the same option.
> Actually, looking at the card itself reveals a label marked 'PG300', so 
> obviously it must be a rebranded card.

Lars-

Based on your email, I have created this patch to enable autodetection
of your card.

Please test this patch against the tip of v4l-dvb master branch hg
repository on linuxtv.org, and confirm that the card is autodetected and
fully operational.

Please remove any insmod options from your startup scripts before
conducting this test.

Let me know how it works out, so that I can have this added to the next
kernel.

Regards,

Mike Krufky
# HG changeset patch
# User Michael Krufky <[EMAIL PROTECTED]>
# Node ID 7f6df2e20debc6f7e8bde6e34c266183583ba228
# Parent  fae890aee0c365fe8741b166690c9f0a81c495a1
cx88: autodetect Club3D Zap TV2100 by subsystem id 12ab:2300

From: Michael Krufky <[EMAIL PROTECTED]>

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 <[EMAIL PROTECTED]>
Signed-off-by: Michael Krufky <[EMAIL PROTECTED]>

diff -r fae890aee0c3 -r 7f6df2e20deb linux/Documentation/video4linux/CARDLIST.cx88
--- a/linux/Documentation/video4linux/CARDLIST.cx88	Tue Sep 19 12:51:56 2006 -0300
+++ b/linux/Documentation/video4linux/CARDLIST.cx88	Tue Sep 19 19:29:22 2006 -0400
@@ -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 -r fae890aee0c3 -r 7f6df2e20deb linux/drivers/media/video/cx88/cx88-cards.c
--- a/linux/drivers/media/video/cx88/cx88-cards.c	Tue Sep 19 12:51:56 2006 -0300
+++ b/linux/drivers/media/video/cx88/cx88-cards.c	Tue Sep 19 19:29:22 2006 -0400
@@ -1614,6 +1614,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);
_______________________________________________
linux-dvb mailing list
linux-dvb@linuxtv.org
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linux-dvb

Reply via email to