Ignore:
Timestamp:
Apr 9, 2006, 12:09:39 PM (19 years ago)
Author:
vladest
Message:

Latest ALSA patches
HDA patches
Patch for Intel from Rudy's
Fixes locks on NM256 chipsets
Fixes PM on Maestro3 chipsets

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GPL/trunk/alsa-kernel/pci/bt87x.c

    r70 r76  
    794794    /* AVerMedia Studio No. 103, 203, ...? */
    795795    BT_DEVICE(878, 0x1461, 0x0003, 48000),
     796    /* Leadtek Winfast tv 2000xp delux */
     797    BT_DEVICE(878, 0x107d, 0x6606, 32000),
    796798    {0}
    797799};
     
    804806} blacklist[] __devinitdata = {
    805807    {0x0071, 0x0101}, /* Nebula Electronics DigiTV */
     808    {0x11bd, 0x001c}, /* Pinnacle PCTV Sat */
    806809    {0x11bd, 0x0026}, /* Pinnacle PCTV SAT CI */
    807810    {0x1461, 0x0761}, /* AVermedia AverTV DVB-T */
    808811    {0x1461, 0x0771}, /* AVermedia DVB-T 771 */
    809812    {0x1822, 0x0001}, /* Twinhan VisionPlus DVB-T */
     813    {0x18ac, 0xd500}, /* DVICO FusionHDTV 5 Lite */
    810814    {0x18ac, 0xdb10}, /* DVICO FusionHDTV DVB-T Lite */
    811815    {0x270f, 0xfc00}, /* Chaintech Digitop DST-1000 DVB-S */
     816    {0x7063, 0x2000}, /* pcHDTV HD-2000 TV */
    812817};
    813818
     
    825830        if (blacklist[i].subvendor == pci->subsystem_vendor &&
    826831            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);
    829834            return -EBUSY;
    830835        }
    831836
    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);
    834839    snd_printk(KERN_DEBUG "please mail id, board name, and, "
    835840               "if it works, the correct digital_rate option to "
Note: See TracChangeset for help on using the changeset viewer.