mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 02:21:52 +09:00
ALSA: hda - Fix hp-mic mode without VREF bits
commit 16c0cefe89 upstream.
When the hp mic pin has no VREF bits, the driver forgot to set PIN_IN
bit. Spotted during debugging old MacBook Airs.
Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=65681
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
eda7913868
commit
5fb0e7deb2
@@ -2703,7 +2703,7 @@ static int hp_mic_jack_mode_put(struct snd_kcontrol *kcontrol,
|
||||
val &= ~(AC_PINCTL_VREFEN | PIN_HP);
|
||||
val |= get_vref_idx(vref_caps, idx) | PIN_IN;
|
||||
} else
|
||||
val = snd_hda_get_default_vref(codec, nid);
|
||||
val = snd_hda_get_default_vref(codec, nid) | PIN_IN;
|
||||
}
|
||||
snd_hda_set_pin_ctl_cache(codec, nid, val);
|
||||
call_hp_automute(codec, NULL);
|
||||
|
||||
Reference in New Issue
Block a user