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

Commit 00a602db authored by Takashi Iwai's avatar Takashi Iwai
Browse files

ALSA: hda - Fix PCM reference NID for STAC/IDT analog outputs



The reference NID for the analog outputs of STAC/IDT codecs is set
to a fixed number 0x02.  But this isn't always correct and in many
codecs it points to a non-existing NID.

This patch fixes the initialization of the PCM reference NID taken
from the actually probed DAC list.

Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 32ed3f46
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -2539,6 +2539,8 @@ static int stac92xx_build_pcms(struct hda_codec *codec)

	info->name = "STAC92xx Analog";
	info->stream[SNDRV_PCM_STREAM_PLAYBACK] = stac92xx_pcm_analog_playback;
	info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
		spec->multiout.dac_nids[0];
	info->stream[SNDRV_PCM_STREAM_CAPTURE] = stac92xx_pcm_analog_capture;
	info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
	info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams = spec->num_adcs;