diff mbox series

[07/12] ASoC: sof: pcm: use snd_pcm_direction_name()

Message ID 87mslzk51h.wl-kuninori.morimoto.gx@renesas.com
State Accepted
Commit cda4aa0069b73e3404ee61864b4814ccc7b7a6ad
Headers show
Series ALSA/ASoC: use snd_pcm_direction_name() | expand

Commit Message

Kuninori Morimoto July 30, 2024, 2:05 a.m. UTC
We already have snd_pcm_direction_name(). Let's use it.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
---
 sound/soc/sof/pcm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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;
 		}