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

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

ALSA: pcm: Correct broken procfs set up



The commit c8da9be4 ("ALSA: pcm: Adjust nine function calls
together with a variable assignment") contained a badly incorrect
conversion, a "status" PCM procfs creation was replaced with the next
one.  Luckily, this could be spotted easily by the kernel runtime
warning.

Fixes: c8da9be4 ("ALSA: pcm: Adjust nine function calls together...")
Reported-by: default avatarFabio Estevam <fabio.estevam@nxp.com>
Tested-by: default avatarFabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent b8e2204b
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -625,7 +625,8 @@ static int snd_pcm_substream_proc_init(struct snd_pcm_substream *substream)
		}
	}
	substream->proc_sw_params_entry = entry;
	entry = snd_info_create_module_entry(THIS_MODULE, "pcm", NULL);
	entry = snd_info_create_card_entry(card, "status",
					   substream->proc_root);
	if (entry) {
		snd_info_set_text_ops(entry, substream,
				      snd_pcm_substream_proc_status_read);