This is a note to let you know that I've just added the patch titled ALSA: hda - Don't create duplicated ctls for loopback paths to the 3.13-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: alsa-hda-don-t-create-duplicated-ctls-for-loopback-paths.patch and it can be found in the queue-3.13 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 43a8e50a46a4e1dd1451e4a4ffa1f7695fb7d287 Mon Sep 17 00:00:00 2001 From: Takashi Iwai <tiwai@xxxxxxx> Date: Tue, 7 Jan 2014 18:11:44 +0100 Subject: ALSA: hda - Don't create duplicated ctls for loopback paths From: Takashi Iwai <tiwai@xxxxxxx> commit 43a8e50a46a4e1dd1451e4a4ffa1f7695fb7d287 upstream. AD1986A mic pins (0x1d and 0x1f) share the same widget for controlling the loopback volume/mute, but the generic parser didn't check it. This ended up with the duplicated controls for the same effect. This patch adds the check of the duplication for avoiding it. After this fix, there will be only one control although it affects both paths; this remaining issue should be fixed later in a different patch. Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=66621 Signed-off-by: Takashi Iwai <tiwai@xxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- sound/pci/hda/hda_generic.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- a/sound/pci/hda/hda_generic.c +++ b/sound/pci/hda/hda_generic.c @@ -2857,9 +2857,11 @@ static bool look_for_mix_leaf_ctls(struc if (num_conns < idx) return false; nid = list[idx]; - if (!*mix_val && nid_has_volume(codec, nid, HDA_OUTPUT)) + if (!*mix_val && nid_has_volume(codec, nid, HDA_OUTPUT) && + !is_ctl_associated(codec, nid, HDA_OUTPUT, 0, NID_PATH_VOL_CTL)) *mix_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT); - if (!*mute_val && nid_has_mute(codec, nid, HDA_OUTPUT)) + if (!*mute_val && nid_has_mute(codec, nid, HDA_OUTPUT) && + !is_ctl_associated(codec, nid, HDA_OUTPUT, 0, NID_PATH_MUTE_CTL)) *mute_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT); return *mix_val || *mute_val; Patches currently in stable-queue which might be from tiwai@xxxxxxx are queue-3.13/alsa-hda-add-headset-mic-detect-quirks-for-another-dell-laptop.patch queue-3.13/alsa-hda-fix-silent-output-on-macbook-air-1-1.patch queue-3.13/alsa-hda-correct-ad1986a-3stack-pin-configs.patch queue-3.13/alsa-hda-add-headset-mic-detect-quirks-for-some-dell-machines.patch queue-3.13/alsa-hda-hdmi-allow-pin_out-to-be-dynamically-enabled.patch queue-3.13/alsa-rme9652-fix-a-missing-comma-in-channel_map_9636_ds.patch queue-3.13/alsa-hda-automute-via-amp-instead-of-pinctl-on-some-aio-models.patch queue-3.13/alsa-enable-config_zone_dma-for-smaller-pci-dma-masks.patch queue-3.13/alsa-bits-vs-bytes-bug-in-snd_card_create.patch queue-3.13/hp_accel-add-a-new-pnp-id-hpq6007-for-new-hp-laptops.patch queue-3.13/alsa-hda-don-t-create-duplicated-ctls-for-loopback-paths.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html