aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorDavid Henningsson <david.henningsson@canonical.com>2011-02-21 10:23:18 +0100
committerTakashi Iwai <tiwai@suse.de>2011-02-22 14:02:09 +0100
commit306496761745942d8167e9193a738b559a7fb0b3 (patch)
treee6fcbb83d3a924c9fb0342781e3e720aa9b85be9 /sound
parentALSA: fix one memory leak in sound jack (diff)
downloadlinux-dev-306496761745942d8167e9193a738b559a7fb0b3.tar.xz
linux-dev-306496761745942d8167e9193a738b559a7fb0b3.zip
ALSA: HDA: Fix mic initialization in VIA auto parser
This typo caused some microphone inputs not to be correctly initialized on VIA codecs. Reported-By: Mark Goldstein <goldstein.mark@gmail.com> Cc: stable@kernel.org Signed-off-by: David Henningsson <david.henningsson@canonical.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/patch_via.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_via.c b/sound/pci/hda/patch_via.c
index a76c3260d941..63b0054200a8 100644
--- a/sound/pci/hda/patch_via.c
+++ b/sound/pci/hda/patch_via.c
@@ -567,7 +567,7 @@ static void via_auto_init_analog_input(struct hda_codec *codec)
hda_nid_t nid = cfg->inputs[i].pin;
if (spec->smart51_enabled && is_smart51_pins(spec, nid))
ctl = PIN_OUT;
- else if (i == AUTO_PIN_MIC)
+ else if (cfg->inputs[i].type == AUTO_PIN_MIC)
ctl = PIN_VREF50;
else
ctl = PIN_IN;