From: Kuninori Morimoto Date: Tue, 30 Jul 2024 02:05:46 +0000 (+0000) Subject: ASoC: sof: pcm: use snd_pcm_direction_name() X-Git-Tag: v6.12-rc1~169^2~1^2~106^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cda4aa0069b73e3404ee61864b4814ccc7b7a6ad;p=thirdparty%2Flinux.git ASoC: sof: pcm: 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/87mslzk51h.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/sof/pcm.c b/sound/soc/sof/pcm.c index baad4c1445aa7..35a7462d8b693 100644 --- a/sound/soc/sof/pcm.c +++ b/sound/soc/sof/pcm.c @@ -100,7 +100,7 @@ sof_pcm_setup_connected_widgets(struct snd_sof_dev *sdev, struct snd_soc_pcm_run dpcm_end_walk_at_be); if (ret < 0) { dev_err(sdev->dev, "error: dai %s has no valid %s path\n", dai->name, - dir == SNDRV_PCM_STREAM_PLAYBACK ? "playback" : "capture"); + snd_pcm_direction_name(dir)); return ret; }