Ignore:
Timestamp:
May 9, 2009, 11:45:26 AM (17 years ago)
Author:
Paul Smedley
Message:

Update alsa-kernel to ALSA 1.0.20 level

Location:
GPL/trunk/alsa-kernel/pci/ac97
Files:
2 edited

Legend:

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

    r410 r426  
    144144{ 0x43585421, 0xffffffff, "HSD11246",           NULL,           NULL }, // SmartMC II
    145145{ 0x43585428, 0xfffffff8, "Cx20468",            patch_conexant, NULL }, // SmartAMC fixme: the mask might be different
     146{ 0x43585430, 0xffffffff, "Cx20468-31",         patch_conexant, NULL },
    146147{ 0x43585431, 0xffffffff, "Cx20551",           patch_cx20551,  NULL },
    147148{ 0x44543031, 0xfffffff0, "DT0398",             NULL,           NULL },
     
    384385EXPORT_SYMBOL(snd_ac97_update_bits);
    385386
    386 /* no lock version - see snd_ac97_updat_bits() */
     387/* no lock version - see snd_ac97_update_bits() */
    387388int snd_ac97_update_bits_nolock(struct snd_ac97 *ac97, unsigned short reg,
    388389                                unsigned short mask, unsigned short value)
     
    16821683        int err, idx;
    16831684
    1684         //printk("AC97_GPIO_CFG = %x\n",snd_ac97_read(ac97,AC97_GPIO_CFG));
     1685        /*
     1686        printk(KERN_DEBUG "AC97_GPIO_CFG = %x\n",
     1687               snd_ac97_read(ac97,AC97_GPIO_CFG));
     1688        */
    16851689        snd_ac97_write(ac97, AC97_GPIO_CFG, 0xffff & ~(AC97_GPIO_LINE1_OH));
    16861690        snd_ac97_write(ac97, AC97_GPIO_POLARITY, 0xffff & ~(AC97_GPIO_LINE1_OH));
     
    21622166                /* nothing should be in powerdown mode */
    21632167                snd_ac97_write_cache(ac97, AC97_GENERAL_PURPOSE, 0);
    2164                 end_time = jiffies + msecs_to_jiffies(100);
     2168                end_time = jiffies + msecs_to_jiffies(120);
    21652169                do {
    21662170                        if ((snd_ac97_read(ac97, AC97_POWERDOWN) & 0x0f) == 0x0f)
  • GPL/trunk/alsa-kernel/pci/ac97/ac97_proc.c

    r305 r426  
    125125        snd_iprintf(buffer, "PCI Subsys Device: 0x%04x\n\n",
    126126                    ac97->subsystem_device);
     127
     128        snd_iprintf(buffer, "Flags: %x\n", ac97->flags);
    127129
    128130        if ((ac97->ext_id & AC97_EI_REV_MASK) >= AC97_EI_REV_23) {
Note: See TracChangeset for help on using the changeset viewer.