mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00:00
ALSA: HDA VIA: Modify vt1708_set_pinconfig_connect function.
like seqassoc 0xff, seqassoc 0xf0 of vt1708 should override Port Connectivity field into 'AC_JACK_PORT_COMPLEX' Signed-off-by: Lydia Wang <lydiawang@viatech.com.cn> Signed-off-by: Logan Li <loganli@viatech.com.cn> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
1f2e99febd
commit
82ef9e45c4
1 changed files with 4 additions and 5 deletions
|
@ -1768,11 +1768,10 @@ static void vt1708_set_pinconfig_connect(struct hda_codec *codec, hda_nid_t nid)
|
||||||
def_conf = snd_hda_codec_get_pincfg(codec, nid);
|
def_conf = snd_hda_codec_get_pincfg(codec, nid);
|
||||||
seqassoc = (unsigned char) get_defcfg_association(def_conf);
|
seqassoc = (unsigned char) get_defcfg_association(def_conf);
|
||||||
seqassoc = (seqassoc << 4) | get_defcfg_sequence(def_conf);
|
seqassoc = (seqassoc << 4) | get_defcfg_sequence(def_conf);
|
||||||
if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE) {
|
if (get_defcfg_connect(def_conf) == AC_JACK_PORT_NONE
|
||||||
if (seqassoc == 0xff) {
|
&& (seqassoc == 0xf0 || seqassoc == 0xff)) {
|
||||||
def_conf = def_conf & (~(AC_JACK_PORT_BOTH << 30));
|
def_conf = def_conf & (~(AC_JACK_PORT_BOTH << 30));
|
||||||
snd_hda_codec_set_pincfg(codec, nid, def_conf);
|
snd_hda_codec_set_pincfg(codec, nid, def_conf);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue