Mailing List archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[linux-dvb] Missing Subsystem



Hello,

since my last update from driver dvb-0.9.x to dvb-1.0.x one card can't be
recognized.
I saw that one card has no subsystem in "lspci -v" output which is needed by
the driver.
Kernel 2.4.x was used.

1st PC:
00:0d.0 Multimedia controller: Philips Semiconductors SAA7146 (rev 01)
Siemens DVB-S 1.3
        ????											Tuner: BSRV2

00:0e.0 Multimedia controller: Philips Semiconductors SAA7146 (rev 01)
Siemens DVB-S 1.5
        Subsystem: Technotrend Systemtechnik GmbH: Unknown device 0000
Tuner: BSRU6

2nd PC:
00:0d.0 Multimedia controller: Philips Semiconductors SAA7146 (rev 01)
Siemens DVB-S 1.3
        Subsystem: Technotrend Systemtechnik GmbH: Unknown device 0000
Tuner: BSRV2


The old driver has in dvb.c DVB_CARD_TT_SIEMENS as default card type, and it
worked.

get_card_type(struct pci_dev *dev)
{
        //FIXME: change back to -1 when we are sure to know all subvendor
device
***     int type=DVB_CARD_TT_SIEMENS;

        switch (dev->subsystem_vendor) {
        default:
        case 0x110a:
        case 0x13c2:
                switch (dev->subsystem_device) {
                case 0x1003: /* TT-Budget and WinTV-NOVA-S, both tuner types
*/
                case 0x1004: /* WinTV-NOVA-C */
                case 0x1005: /* WinTV-NOVA-T */
                        type=DVB_CARD_TT_BUDGET;
                        break;
                case 0x0000: /* Siemens cable and sat card (maybe older
version?
                case 0x0001: /* Technotrend, Hauppauge (maybe retail version
?)
                case 0x0003: /* Hauppauge/TT V2.1, new design and new tuner
*/
                case 0x0004: /* new type but with old tuner ? */
                        type=DVB_CARD_TT_SIEMENS;
                        break;
                }
                break;
        }
        return type;
}

What can I do to recognize this card with the new driver ?

Bruno.



____________
Virus checked by G DATA AntiVirusKit
Version: AVK 12.0.412 from 23.06.2003
Virus news: www.antiviruslab.com



-- 
Info:
To unsubscribe send a mail to ecartis@linuxtv.org with "unsubscribe linux-dvb" as subject.



Home | Main Index | Thread Index