aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci
diff options
context:
space:
mode:
authorLibin Yang <libin.yang@intel.com>2005-11-23 15:48:36 +0100
committerJaroslav Kysela <perex@suse.cz>2006-01-03 12:29:41 +0100
commit5014f193166d14e47525a34d65a1c7d77b0f6f38 (patch)
tree0350c8c4089aa66947cdd0aabece2d7b40e6e4a5 /sound/pci
parent[ALSA] sound/: possible cleanups (diff)
downloadlinux-dev-5014f193166d14e47525a34d65a1c7d77b0f6f38.tar.xz
linux-dev-5014f193166d14e47525a34d65a1c7d77b0f6f38.zip
[ALSA] hda-codec - Fix auto-probe of ALC880
Modules: HDA Codec driver This patch is to fix the problem of calculating the nid incorrectly when auto-probe for ALC880. The problem to be fixed often behaves with such words when using dmesg, 'num_steps = 0 for NID=0x8' when auto-probe for ALC880. The patch contains: - alsa-kernel/pci/hda/patch_realtek.c: replace 'alc880_dac_to_idx' with 'alc880_idx_to_dac' in function 'alc880_auto_fill_dac_nids()' Signed-off-by: Libin Yang <libin.yang@intel.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r--sound/pci/hda/patch_realtek.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index 77c5f95ea55b..c5fb141f6222 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -1760,7 +1760,7 @@ static int alc880_auto_fill_dac_nids(struct alc_spec *spec, const struct auto_pi
nid = cfg->line_out_pins[i];
if (alc880_is_fixed_pin(nid)) {
int idx = alc880_fixed_pin_idx(nid);
- spec->multiout.dac_nids[i] = alc880_dac_to_idx(idx);
+ spec->multiout.dac_nids[i] = alc880_idx_to_dac(idx);
assigned[idx] = 1;
}
}