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

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

ALSA: hda - Increase PCM stream name buf in patch_realtek.c



The name buf with size 16 is too short for some codec names, e.g.
truncated like "ALC861-VD Analo".  Now the size is doubled.

Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 78735cff
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -275,13 +275,13 @@ struct alc_spec {
						 */
	unsigned int num_init_verbs;
	char stream_name_analog[16];	/* analog PCM stream */
	char stream_name_analog[32];	/* analog PCM stream */
	struct hda_pcm_stream *stream_analog_playback;
	struct hda_pcm_stream *stream_analog_capture;
	struct hda_pcm_stream *stream_analog_alt_playback;
	struct hda_pcm_stream *stream_analog_alt_capture;
	char stream_name_digital[16];	/* digital PCM stream */
	char stream_name_digital[32];	/* digital PCM stream */
	struct hda_pcm_stream *stream_digital_playback;
	struct hda_pcm_stream *stream_digital_capture;