Selaa lähdekoodia

ALSA: hda - do not add non-existing Mic boost controls

If the input node does not have any volume capable input amp,
don't add such a control.

Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
David Henningsson 12 vuotta sitten
vanhempi
commit
02aba55053
1 muutettua tiedostoa jossa 3 lisäystä ja 0 poistoa
  1. 3 0
      sound/pci/hda/hda_generic.c

+ 3 - 0
sound/pci/hda/hda_generic.c

@@ -2826,6 +2826,9 @@ static int parse_mic_boost(struct hda_codec *codec)
 			struct nid_path *path;
 			unsigned int val;
 
+			if (!nid_has_volume(codec, nid, HDA_INPUT))
+				continue;
+
 			label = hda_get_autocfg_input_label(codec, cfg, i);
 			if (prev_label && !strcmp(label, prev_label))
 				type_idx++;