diff options
author | Takashi Iwai <tiwai@suse.de> | 2011-06-13 08:32:06 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-06-13 08:32:06 +0200 |
commit | 54463a66b91cf491a7c9af612b0e310babc5fa24 (patch) | |
tree | 1a4841c6eab9635613571b50b5c89a2023afa917 /sound | |
parent | ac5d4b404e78bd7eb67fc70c2acb437a25497e98 (diff) | |
download | op-kernel-dev-54463a66b91cf491a7c9af612b0e310babc5fa24.zip op-kernel-dev-54463a66b91cf491a7c9af612b0e310babc5fa24.tar.gz |
ALSA: hda - Fix wrong auto-mute type for Acer Aspire-one
The auto-mute setup for Acer Aspire-one with ALC268 was set wrongly
during the clean-up of auto-mute function. Fixed now.
Tested-by: Borislav Petkov <bp@alien8.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/hda/patch_realtek.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 43fcfbd..61a774b 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -13316,9 +13316,8 @@ static void alc268_acer_lc_setup(struct hda_codec *codec) struct alc_spec *spec = codec->spec; spec->autocfg.hp_pins[0] = 0x15; spec->autocfg.speaker_pins[0] = 0x14; - spec->automute_mixer_nid[0] = 0x0f; spec->automute = 1; - spec->automute_mode = ALC_AUTOMUTE_MIXER; + spec->automute_mode = ALC_AUTOMUTE_AMP; spec->ext_mic.pin = 0x18; spec->ext_mic.mux_idx = 0; spec->int_mic.pin = 0x12; |