aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorBrian J. Tarricone <brian@tarricone.org>2010-05-02 17:32:10 -0700
committerTakashi Iwai <tiwai@suse.de>2010-05-05 09:45:33 +0200
commit8dd34ab111dc6ccb35a1a7a59222cb9bb0160e6f (patch)
treeca7148f73f3fed01de571a2d3d7b7f2061e09a9c /sound
parentALSA: hda: Use STAC_DELL_M6_BOTH quirk for Dell Studio 1558 (diff)
downloadlinux-dev-8dd34ab111dc6ccb35a1a7a59222cb9bb0160e6f.tar.xz
linux-dev-8dd34ab111dc6ccb35a1a7a59222cb9bb0160e6f.zip
ALSA: hda - fix array indexing while creating inputs for Cirrus codecs
This fixes a problem where cards show up as only having a single mixer element, suppressing all sound output. Signed-off-by: Brian J. Tarricone <brian@tarricone.org> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/patch_cirrus.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_cirrus.c b/sound/pci/hda/patch_cirrus.c
index 7de782a5b8f4..350ee8ac4153 100644
--- a/sound/pci/hda/patch_cirrus.c
+++ b/sound/pci/hda/patch_cirrus.c
@@ -766,7 +766,7 @@ static int build_input(struct hda_codec *codec)
for (n = 0; n < AUTO_PIN_LAST; n++) {
if (!spec->adc_nid[n])
continue;
- err = snd_hda_add_nid(codec, kctl, 0, spec->adc_nid[i]);
+ err = snd_hda_add_nid(codec, kctl, 0, spec->adc_nid[n]);
if (err < 0)
return err;
}