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

Commit ff18620c authored by Takashi Iwai's avatar Takashi Iwai Committed by Mark Brown
Browse files

ASoC: dapm: Fix source list debugfs outputs



... due to a copy & paste error.

Spotted by coverity CID 710923.

Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
Cc: stable@vger.kernel.org
parent 959f5854
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1949,7 +1949,7 @@ static ssize_t dapm_widget_power_read_file(struct file *file,
				w->active ? "active" : "inactive");

	list_for_each_entry(p, &w->sources, list_sink) {
		if (p->connected && !p->connected(w, p->sink))
		if (p->connected && !p->connected(w, p->source))
			continue;

		if (p->connect)