Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ca29683b authored by Takashi Iwai's avatar Takashi Iwai
Browse files

ALSA: hda - Exclude aamix from capture paths



The capture paths shouldn't contain the analog loopback mixer.
Pass a proper argument to exclude the aamix NID.

Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent d12daf6f
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -2110,13 +2110,9 @@ static int create_input_ctls(struct hda_codec *codec)

			if (!is_reachable_path(codec, pin, adc))
				continue;
			path = snd_hda_add_new_path(codec, pin, adc, 0);
			if (!path) {
				snd_printd(KERN_ERR
					   "invalid input path 0x%x -> 0x%x\n",
					   pin, adc);
			path = snd_hda_add_new_path(codec, pin, adc, -mixer);
			if (!path)
				continue;
			}
			print_nid_path("input", path);
			spec->input_paths[imux_idx][c] =
				snd_hda_get_path_idx(codec, path);