git.samba.org
/
sfrench
/
cifs-2.6.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e3c7596
)
ALSA: hda - Fix initial verbs for mic-boosts on AD1981HD
author
Takashi Iwai
<tiwai@suse.de>
Fri, 23 Jan 2009 11:33:54 +0000
(12:33 +0100)
committer
Takashi Iwai
<tiwai@suse.de>
Fri, 23 Jan 2009 11:33:54 +0000
(12:33 +0100)
The mic boosts (NID 0x08 and 0x18) are input-amps, not output-amps.
Fix the initial verbs for them.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/hda/patch_analog.c
patch
|
blob
|
history
diff --git
a/sound/pci/hda/patch_analog.c
b/sound/pci/hda/patch_analog.c
index 2e7371ec2e2319fcebe123ed36fe87b58e5e4cbf..9a902c2f05a2ebe9bf8d06ffe11420635dafc203 100644
(file)
--- a/
sound/pci/hda/patch_analog.c
+++ b/
sound/pci/hda/patch_analog.c
@@
-1407,8
+1407,8
@@
static struct hda_verb ad1981_init_verbs[] = {
{0x1e, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
{0x1f, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},
/* Mic boost: 0dB */
- {0x08, AC_VERB_SET_AMP_GAIN_MUTE,
0xb000
},
- {0x18, AC_VERB_SET_AMP_GAIN_MUTE,
0xb000
},
+ {0x08, AC_VERB_SET_AMP_GAIN_MUTE,
AMP_IN_UNMUTE(0)
},
+ {0x18, AC_VERB_SET_AMP_GAIN_MUTE,
AMP_IN_UNMUTE(0)
},
/* Record selector: Front mic */
{0x15, AC_VERB_SET_CONNECT_SEL, 0x0},
{0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080},