From: Hui Wang Date: Tue, 8 Jul 2014 09:56:14 +0000 (+0800) Subject: ALSA: hda - fix a typo by changing mute_led_nid to cap_mute_led_nid X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=fc1fad93c95bed53f701a1169c556113341b43f0;p=openwrt%2Fstaging%2Fblogic.git ALSA: hda - fix a typo by changing mute_led_nid to cap_mute_led_nid BugLink: https://bugs.launchpad.net/bugs/1329580 Cc: David Henningsson Cc: Kailang Yang Signed-off-by: Hui Wang Signed-off-by: Takashi Iwai --- diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 327413ee72fb..73b175944a07 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c @@ -3529,7 +3529,7 @@ static void alc269_fixup_hp_cap_mic_mute_hook(struct hda_codec *codec, struct alc_spec *spec = codec->spec; unsigned int pinval, enable, disable; - pinval = snd_hda_codec_get_pin_target(codec, spec->mute_led_nid); + pinval = snd_hda_codec_get_pin_target(codec, spec->cap_mute_led_nid); pinval &= ~AC_PINCTL_VREFEN; enable = pinval | AC_PINCTL_VREF_80; disable = pinval | AC_PINCTL_VREF_HIZ;