diff mbox series

[04/12] ALSA: aloop: use snd_pcm_direction_name()

Message ID 87r0bbk528.wl-kuninori.morimoto.gx@renesas.com
State Accepted
Commit e1a642aba479e861e3d552b0548d1274d6a1c122
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/drivers/aloop.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/sound/drivers/aloop.c b/sound/drivers/aloop.c
index d6dd4b8c750ad..439d12ad87879 100644
--- a/sound/drivers/aloop.c
+++ b/sound/drivers/aloop.c
@@ -900,8 +900,7 @@  static void loopback_snd_timer_dpcm_info(struct loopback_pcm *dpcm,
 		    cable->snd_timer.id.device,
 		    cable->snd_timer.id.subdevice);
 	snd_iprintf(buffer, "    timer open:\t\t%s\n",
-		    (cable->snd_timer.stream == SNDRV_PCM_STREAM_CAPTURE) ?
-			    "capture" : "playback");
+		    snd_pcm_direction_name(cable->snd_timer.stream));
 }
 
 static snd_pcm_uframes_t loopback_pointer(struct snd_pcm_substream *substream)