Dear Oliver, Using your latest development tree (hg clone http://linuxtv.org/hg/~endriss/media_build_experimental), I have made a small modification in ddbridge-core.c (see below) to make the new "Cine CT V6" card detected by the ddbridge module. With this small patch, the card is now detected, but not the double C/T tuner onboard. If I connect a "DuoFlex CT" on a port, the tuners of the add-in card are detected. Also, I was wondering why they put a male and a female RF connectors on the "Cine CT V6" (maybe a loop-through?) where there are two female RF connectors on the "DuoFlex CT" card. Best regards, Sebastien. Before ------ static struct ddb_info ddb_v6 = { .type = DDB_OCTOPUS, .name = "Digital Devices Cine S2 V6 DVB adapter", .port_num = 3, }; And DDB_ID(DDVID, 0x0003, DDVID, 0x0020, ddb_v6), After ----- static struct ddb_info ddb_v6_s2 = { .type = DDB_OCTOPUS, .name = "Digital Devices Cine S2 V6 DVB-S/S2 adapter", .port_num = 3, }; static struct ddb_info ddb_v6_ct = { .type = DDB_OCTOPUS, .name = "Digital Devices Cine S2 V6 DVB-C/T adapter", .port_num = 3, }; And DDB_ID(DDVID, 0x0003, DDVID, 0x0020, ddb_v6_s2), DDB_ID(DDVID, 0x0003, DDVID, 0x0030, ddb_v6_ct), -- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html