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

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

ALSA: hda - Cache the MUX selection for generic HDMI



When a selection to a converter MUX is changed in hdmi_pcm_open(), it
should be cached so that the given connection can be restored properly
at PM resume.  We need just to replace the corresponding
snd_hda_codec_write() call with snd_hda_codec_write_cache().

Cc: <stable@vger.kernel.org>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 1389fd03
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1155,7 +1155,7 @@ static int hdmi_pcm_open(struct hda_pcm_stream *hinfo,
	per_cvt->assigned = 1;
	per_cvt->assigned = 1;
	hinfo->nid = per_cvt->cvt_nid;
	hinfo->nid = per_cvt->cvt_nid;


	snd_hda_codec_write(codec, per_pin->pin_nid, 0,
	snd_hda_codec_write_cache(codec, per_pin->pin_nid, 0,
			    AC_VERB_SET_CONNECT_SEL,
			    AC_VERB_SET_CONNECT_SEL,
			    mux_idx);
			    mux_idx);
	snd_hda_spdif_ctls_assign(codec, pin_idx, per_cvt->cvt_nid);
	snd_hda_spdif_ctls_assign(codec, pin_idx, per_cvt->cvt_nid);