Sara Sandrin <giadrag@xxxxxx> writes: > Jeremy Higgs wrote: > > > I'm trying to get a Pinnacle PCTV card working under Gentoo Linux, > > but I'm having a lot of problems with it... > > > > ... DATE/TIME gentoo tuner: Huh? tv_set is NULL? Some more log is useful in these cases ... Seems to be some new company code (the tuner module likely complains about some unknown company code some lines above that). The patch below might help. Gerd --- video4linux/tuner.c~ 2003-12-17 11:32:01.000000000 +0100 +++ video4linux/tuner.c 2003-12-21 18:46:07.161379609 +0100 @@ -745,7 +745,8 @@ company_code = buf[0x11] << 8 | buf[0x12]; printk("tuner: microtune: companycode=%04x part=%02x rev=%02x\n", company_code,buf[0x13],buf[0x14]); - if (company_code != 0x4d54) { + if (company_code != 0x4d54 && + company_code != 0x3cbf) { printk("tuner: microtune: unknown companycode\n"); return 0; }