diff options
author | Hui Wang <hui.wang@canonical.com> | 2014-07-08 17:56:14 +0800 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2014-07-08 12:41:08 +0200 |
commit | fc1fad93c95bed53f701a1169c556113341b43f0 (patch) | |
tree | 094d8590e6c018aba47d000ce1242be2ada821c4 /sound/pci | |
parent | 549d87823564e6edbd2077c2e6c979d17841f691 (diff) | |
download | linux-fc1fad93c95bed53f701a1169c556113341b43f0.tar.gz linux-fc1fad93c95bed53f701a1169c556113341b43f0.tar.bz2 linux-fc1fad93c95bed53f701a1169c556113341b43f0.zip |
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 <david.henningsson@canonical.com>
Cc: Kailang Yang <kailang@realtek.com>
Signed-off-by: Hui Wang <hui.wang@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci')
-rw-r--r-- | sound/pci/hda/patch_realtek.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |