Changeset 485 for GPL/trunk/alsa-kernel/pci/intel8x0.c
- Timestamp:
- May 23, 2010, 10:17:06 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
GPL/trunk/alsa-kernel/pci/intel8x0.c
r464 r485 25 25 26 26 * 27 */ 27 */ 28 28 29 29 #include <asm/io.h> … … 269 269 270 270 /* interrupts for the whole chip by interrupt status register finish */ 271 271 272 272 #define ALI_INT_MICIN2 (1<<26) 273 273 #define ALI_INT_PCMIN2 (1<<25) … … 313 313 314 314 /* 315 * 315 * 316 316 */ 317 317 … … 544 544 return -EBUSY; 545 545 } 546 546 547 547 static void snd_intel8x0_codec_write(struct snd_ac97 *ac97, 548 548 unsigned short reg, … … 662 662 * DMA I/O 663 663 */ 664 static void snd_intel8x0_setup_periods(struct intel8x0 *chip, struct ichdev *ichdev) 664 static void snd_intel8x0_setup_periods(struct intel8x0 *chip, struct ichdev *ichdev) 665 665 { 666 666 int idx; … … 886 886 /* clear FIFO for synchronization of channels */ 887 887 fifo = igetdword(chip, fiforeg[ichdev->ali_slot / 4]); 888 fifo &= ~(0xff << (ichdev->ali_slot % 4)); 889 fifo |= 0x83 << (ichdev->ali_slot % 4); 888 fifo &= ~(0xff << (ichdev->ali_slot % 4)); 889 fifo |= 0x83 << (ichdev->ali_slot % 4); 890 890 iputdword(chip, fiforeg[ichdev->ali_slot / 4], fifo); 891 891 } … … 1753 1753 1754 1754 static struct ac97_quirk ac97_quirks[] __devinitdata = { 1755 1755 { 1756 1756 .subvendor = 0x0e11, 1757 1757 .subdevice = 0x000e, 1758 1758 .name = "Compaq Deskpro EN", /* AD1885 */ 1759 1759 .type = AC97_TUNE_HP_ONLY 1760 1760 }, 1761 1761 { 1762 1762 .subvendor = 0x0e11, … … 1771 1771 .type = AC97_TUNE_HP_ONLY 1772 1772 }, 1773 1773 { 1774 1774 .subvendor = 0x0e11, 1775 1775 .subdevice = 0x0860, 1776 1776 .name = "HP/Compaq nx7010", 1777 1777 .type = AC97_TUNE_MUTE_LED 1778 1778 }, 1779 1779 { 1780 1780 .subvendor = 0x1014, … … 2051 2051 .subdevice = 0x0088, 2052 2052 .name = "Fujitsu-Siemens D1522", /* AD1981 */ 2053 .type = AC97_TUNE_HP_ONLY 2054 }, 2055 { 2056 .subvendor = 0x107B, 2057 .subdevice = 0x0111, 2058 .name = "Gateway 2000 ICH2/AD1885", 2053 2059 .type = AC97_TUNE_HP_ONLY 2054 2060 },
Note:
See TracChangeset
for help on using the changeset viewer.