aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sound/pci/hda/patch_conexant.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sound/pci/hda/patch_conexant.c b/sound/pci/hda/patch_conexant.c
index 4b365488c58b..84337e63fadf 100644
--- a/sound/pci/hda/patch_conexant.c
+++ b/sound/pci/hda/patch_conexant.c
@@ -1086,7 +1086,6 @@ static int patch_cxt5045(struct hda_codec *codec)
1086 if (!spec) 1086 if (!spec)
1087 return -ENOMEM; 1087 return -ENOMEM;
1088 codec->spec = spec; 1088 codec->spec = spec;
1089 codec->pin_amp_workaround = 1;
1090 codec->single_adc_amp = 1; 1089 codec->single_adc_amp = 1;
1091 1090
1092 spec->multiout.max_channels = 2; 1091 spec->multiout.max_channels = 2;
@@ -4443,7 +4442,6 @@ static int patch_conexant_auto(struct hda_codec *codec)
4443 if (!spec) 4442 if (!spec)
4444 return -ENOMEM; 4443 return -ENOMEM;
4445 codec->spec = spec; 4444 codec->spec = spec;
4446 codec->pin_amp_workaround = 1;
4447 4445
4448 switch (codec->vendor_id) { 4446 switch (codec->vendor_id) {
4449 case 0x14f15045: 4447 case 0x14f15045:
@@ -4451,7 +4449,10 @@ static int patch_conexant_auto(struct hda_codec *codec)
4451 break; 4449 break;
4452 case 0x14f15051: 4450 case 0x14f15051:
4453 add_cx5051_fake_mutes(codec); 4451 add_cx5051_fake_mutes(codec);
4452 codec->pin_amp_workaround = 1;
4454 break; 4453 break;
4454 default:
4455 codec->pin_amp_workaround = 1;
4455 } 4456 }
4456 4457
4457 apply_pin_fixup(codec, cxt_fixups, cxt_pincfg_tbl); 4458 apply_pin_fixup(codec, cxt_fixups, cxt_pincfg_tbl);