diff options
author | Brian J. Tarricone <brian@tarricone.org> | 2010-05-02 17:32:10 -0700 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-05-05 09:45:33 +0200 |
commit | 8dd34ab111dc6ccb35a1a7a59222cb9bb0160e6f (patch) | |
tree | ca7148f73f3fed01de571a2d3d7b7f2061e09a9c /sound | |
parent | 5c1bccf645d4ab65e4c7502acb42e8b9afdb5bdc (diff) | |
download | linux-8dd34ab111dc6ccb35a1a7a59222cb9bb0160e6f.tar.bz2 |
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.c | 2 |
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; } |