From: Kuninori Morimoto Date: Tue, 30 Jul 2024 02:06:16 +0000 (+0000) Subject: ASoC: soc-dapm: use snd_pcm_direction_name() X-Git-Tag: v6.12-rc1~169^2~1^2~106^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=bb660132868b5208d6a5f2bd184425cf788f4ef9;p=thirdparty%2Fkernel%2Flinux.git ASoC: soc-dapm: use snd_pcm_direction_name() We already have snd_pcm_direction_name(). Let's use it. Signed-off-by: Kuninori Morimoto Link: https://patch.msgid.link/87frrrk50n.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c index 37dccd9c1ba01..d7d6dbb9d9eae 100644 --- a/sound/soc/soc-dapm.c +++ b/sound/soc/soc-dapm.c @@ -2751,8 +2751,7 @@ static int dapm_update_dai_unlocked(struct snd_pcm_substream *substream, if (!w) return 0; - dev_dbg(dai->dev, "Update DAI routes for %s %s\n", dai->name, - dir == SNDRV_PCM_STREAM_PLAYBACK ? "playback" : "capture"); + dev_dbg(dai->dev, "Update DAI routes for %s %s\n", dai->name, snd_pcm_direction_name(dir)); snd_soc_dapm_widget_for_each_sink_path(w, p) { ret = dapm_update_dai_chan(p, p->sink, channels);