diff options
author | David Henningsson <david.henningsson@canonical.com> | 2013-11-12 11:10:57 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2013-11-12 11:35:31 +0100 |
commit | 5959a6bc1124211a359525d209005abc07b0197b (patch) | |
tree | 94eb980c9864c890ab9af46f178247e27432191d /sound | |
parent | 092f9cd16aac7d054af1755c945f37c1b33399e6 (diff) | |
download | op-kernel-dev-5959a6bc1124211a359525d209005abc07b0197b.zip op-kernel-dev-5959a6bc1124211a359525d209005abc07b0197b.tar.gz |
ALSA: hda - Fix Line Out automute on Realtek multifunction jacks
In case there is both a multifunction headset jack and a Line Out
jack, automuting was not working properly from the Line Out jack.
This patch fixes that issue.
Cc: stable@vger.kernel.org (3.10+)
BugLink: https://bugs.launchpad.net/bugs/1250377
Tested-by: Cyrus Lien <cyrus.lien@canonical.com>
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_realtek.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 24d924d..04d1e6b 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -3344,8 +3344,10 @@ static void alc_update_headset_mode(struct hda_codec *codec) else new_headset_mode = ALC_HEADSET_MODE_HEADPHONE; - if (new_headset_mode == spec->current_headset_mode) + if (new_headset_mode == spec->current_headset_mode) { + snd_hda_gen_update_outputs(codec); return; + } switch (new_headset_mode) { case ALC_HEADSET_MODE_UNPLUGGED: |