aboutsummaryrefslogtreecommitdiffstats
path: root/sound/pci
diff options
context:
space:
mode:
authorTakashi Iwai <tiwai@suse.de>2010-01-28 17:11:45 +0100
committerTakashi Iwai <tiwai@suse.de>2010-01-28 17:11:45 +0100
commit30ed7ed11cb88fd56d821a67b9aab1e0d50fb626 (patch)
treec29ec9b352f3ea2a5ef3cff971098950e7afa9f2 /sound/pci
parentALSA: hda - Define max number of PCM devices in hda_codec.h (diff)
downloadlinux-dev-30ed7ed11cb88fd56d821a67b9aab1e0d50fb626.tar.xz
linux-dev-30ed7ed11cb88fd56d821a67b9aab1e0d50fb626.zip
ALSA: hda - Fix index of HP Compaq F700 mic amp
The amp used for the mic input on HP Compaq F700 with Cxt5051 codec has no multiple inputs, thus its index should be 0 instead of 1. Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r--sound/pci/hda/patch_conexant.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_conexant.c b/sound/pci/hda/patch_conexant.c
index 9077e4174ee6..745e35992144 100644
--- a/sound/pci/hda/patch_conexant.c
+++ b/sound/pci/hda/patch_conexant.c
@@ -1832,7 +1832,7 @@ static struct hda_verb cxt5051_lenovo_x200_init_verbs[] = {
static struct hda_verb cxt5051_f700_init_verbs[] = {
/* Line in, Mic */
- {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1) | 0x03},
+ {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) | 0x03},
{0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
{0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},
{0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0},