Changeset 76 for GPL/trunk/alsa-kernel/pci/bt87x.c
- Timestamp:
- Apr 9, 2006, 12:09:39 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/alsa-kernel/pci/bt87x.c
r70 r76 794 794 /* AVerMedia Studio No. 103, 203, ...? */ 795 795 BT_DEVICE(878, 0x1461, 0x0003, 48000), 796 /* Leadtek Winfast tv 2000xp delux */ 797 BT_DEVICE(878, 0x107d, 0x6606, 32000), 796 798 {0} 797 799 }; … … 804 806 } blacklist[] __devinitdata = { 805 807 {0x0071, 0x0101}, /* Nebula Electronics DigiTV */ 808 {0x11bd, 0x001c}, /* Pinnacle PCTV Sat */ 806 809 {0x11bd, 0x0026}, /* Pinnacle PCTV SAT CI */ 807 810 {0x1461, 0x0761}, /* AVermedia AverTV DVB-T */ 808 811 {0x1461, 0x0771}, /* AVermedia DVB-T 771 */ 809 812 {0x1822, 0x0001}, /* Twinhan VisionPlus DVB-T */ 813 {0x18ac, 0xd500}, /* DVICO FusionHDTV 5 Lite */ 810 814 {0x18ac, 0xdb10}, /* DVICO FusionHDTV DVB-T Lite */ 811 815 {0x270f, 0xfc00}, /* Chaintech Digitop DST-1000 DVB-S */ 816 {0x7063, 0x2000}, /* pcHDTV HD-2000 TV */ 812 817 }; 813 818 … … 825 830 if (blacklist[i].subvendor == pci->subsystem_vendor && 826 831 blacklist[i].subdevice == pci->subsystem_device) { 827 snd_printdd(KERN_INFO "card %#04x :%#04x has no audio\n",828 pci-> subsystem_vendor, pci->subsystem_device);832 snd_printdd(KERN_INFO "card %#04x-%#04x:%#04x has no audio\n", 833 pci->device, pci->subsystem_vendor, pci->subsystem_device); 829 834 return -EBUSY; 830 835 } 831 836 832 snd_printk(KERN_INFO "unknown card %#04x :%#04x, using default rate 32000\n",833 pci-> subsystem_vendor, pci->subsystem_device);837 snd_printk(KERN_INFO "unknown card %#04x-%#04x:%#04x, using default rate 32000\n", 838 pci->device, pci->subsystem_vendor, pci->subsystem_device); 834 839 snd_printk(KERN_DEBUG "please mail id, board name, and, " 835 840 "if it works, the correct digital_rate option to "
Note:
See TracChangeset
for help on using the changeset viewer.