diff options
author | David Henningsson <david.henningsson@canonical.com> | 2010-10-04 12:02:14 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-10-12 13:05:02 +0200 |
commit | bdd9ef24cd343c508ed93f1e08f30d4db595b754 (patch) | |
tree | 0d2a1de82a727b6d642c74eba70ccae862dfc78a /sound/pci/hda/hda_intel.c | |
parent | 6a92934d9e987b6363db3e6a08e17bc0f2078c5d (diff) | |
download | linux-3.10-bdd9ef24cd343c508ed93f1e08f30d4db595b754.tar.gz linux-3.10-bdd9ef24cd343c508ed93f1e08f30d4db595b754.tar.bz2 linux-3.10-bdd9ef24cd343c508ed93f1e08f30d4db595b754.zip |
ALSA: HDA: Correctly apply position_fix quirks for ATI and VIA controllers
Position_fix quirks for specific machines now override the default
position_fix behavior for all HDA controllers.
BugLink: http://launchpad.net/bugs/465942
BugLink: http://launchpad.net/bugs/580749
BugLink: http://launchpad.net/bugs/587546
Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_intel.c')
-rw-r--r-- | sound/pci/hda/hda_intel.c | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/sound/pci/hda/hda_intel.c b/sound/pci/hda/hda_intel.c index 38b063eb80e..5cbea85a645 100644 --- a/sound/pci/hda/hda_intel.c +++ b/sound/pci/hda/hda_intel.c @@ -2315,14 +2315,6 @@ static int __devinit check_position_fix(struct azx *chip, int fix) return fix; } - /* Check VIA/ATI HD Audio Controller exist */ - switch (chip->driver_type) { - case AZX_DRIVER_VIA: - case AZX_DRIVER_ATI: - /* Use link position directly, avoid any transfer problem. */ - return POS_FIX_VIACOMBO; - } - q = snd_pci_quirk_lookup(chip->pci, position_fix_list); if (q) { printk(KERN_INFO @@ -2331,6 +2323,15 @@ static int __devinit check_position_fix(struct azx *chip, int fix) q->value, q->subvendor, q->subdevice); return q->value; } + + /* Check VIA/ATI HD Audio Controller exist */ + switch (chip->driver_type) { + case AZX_DRIVER_VIA: + case AZX_DRIVER_ATI: + /* Use link position directly, avoid any transfer problem. */ + return POS_FIX_VIACOMBO; + } + return POS_FIX_AUTO; } |