aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2007-06-05 12:13:34 +0200
committerJaroslav Kysela <perex@suse.cz>2007-07-20 11:11:23 +0200
commit538c49c41bf5a0a739ad2a5417ec25e060ee9d9e (patch)
tree40ca9a554f853e3623386ce5f6a5841fd67e9d55 /sound
parent[ALSA] More description on duplex streams with OSS emulation (diff)
downloadlinux-dev-538c49c41bf5a0a739ad2a5417ec25e060ee9d9e.tar.xz
linux-dev-538c49c41bf5a0a739ad2a5417ec25e060ee9d9e.zip
[ALSA] hda-codec - Fix AD1984 basic model
Fix the amp direction of digital mic capture volume mixer, which resulted in -EINVAL. Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/hda/patch_analog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/hda/patch_analog.c b/sound/pci/hda/patch_analog.c
index c1216470595d..dff2e7917885 100644
--- a/sound/pci/hda/patch_analog.c
+++ b/sound/pci/hda/patch_analog.c
@@ -2872,9 +2872,9 @@ static struct snd_kcontrol_new ad1984_dmic_mixers[] = {
HDA_CODEC_VOLUME("Digital Mic Capture Volume", 0x05, 0x0, HDA_INPUT),
HDA_CODEC_MUTE("Digital Mic Capture Switch", 0x05, 0x0, HDA_INPUT),
HDA_CODEC_VOLUME_IDX("Digital Mic Capture Volume", 1, 0x06, 0x0,
- HDA_OUTPUT),
+ HDA_INPUT),
HDA_CODEC_MUTE_IDX("Digital Mic Capture Switch", 1, 0x06, 0x0,
- HDA_OUTPUT),
+ HDA_INPUT),
{ } /* end */
};