diff options
Diffstat (limited to 'sound')
-rw-r--r-- | sound/pci/hda/patch_realtek.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c index 9bcf34eab679..4abe3da1240c 100644 --- a/sound/pci/hda/patch_realtek.c +++ b/sound/pci/hda/patch_realtek.c | |||
@@ -14593,7 +14593,11 @@ static int alc269_parse_auto_config(struct hda_codec *codec) | |||
14593 | err = alc269_auto_create_multi_out_ctls(spec, &spec->autocfg); | 14593 | err = alc269_auto_create_multi_out_ctls(spec, &spec->autocfg); |
14594 | if (err < 0) | 14594 | if (err < 0) |
14595 | return err; | 14595 | return err; |
14596 | err = alc269_auto_create_input_ctls(codec, &spec->autocfg); | 14596 | if (spec->codec_variant == ALC269_TYPE_NORMAL) |
14597 | err = alc269_auto_create_input_ctls(codec, &spec->autocfg); | ||
14598 | else | ||
14599 | err = alc_auto_create_input_ctls(codec, &spec->autocfg, 0, | ||
14600 | 0x22, 0); | ||
14597 | if (err < 0) | 14601 | if (err < 0) |
14598 | return err; | 14602 | return err; |
14599 | 14603 | ||