ALSA: hda - Enable codec->pin_amp_workaround always for Conexant auto-parser
It can (must for some) be used for all Conexnat codecs safely. Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
22ce5f74a9
commit
1387cde51d
|
@ -4081,20 +4081,10 @@ static int patch_conexant_auto(struct hda_codec *codec)
|
||||||
if (!spec)
|
if (!spec)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
codec->spec = spec;
|
codec->spec = spec;
|
||||||
|
codec->pin_amp_workaround = 1;
|
||||||
err = cx_auto_search_adcs(codec);
|
err = cx_auto_search_adcs(codec);
|
||||||
if (err < 0)
|
if (err < 0)
|
||||||
return err;
|
return err;
|
||||||
switch (codec->vendor_id) {
|
|
||||||
case 0x14f15051:
|
|
||||||
codec->pin_amp_workaround = 1;
|
|
||||||
break;
|
|
||||||
case 0x14f15045:
|
|
||||||
codec->pin_amp_workaround = 1;
|
|
||||||
break;
|
|
||||||
case 0x14f15047:
|
|
||||||
codec->pin_amp_workaround = 1;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
err = cx_auto_parse_auto_config(codec);
|
err = cx_auto_parse_auto_config(codec);
|
||||||
if (err < 0) {
|
if (err < 0) {
|
||||||
kfree(codec->spec);
|
kfree(codec->spec);
|
||||||
|
|
Loading…
Reference in New Issue