diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2024-07-30 05:05:12 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2024-08-01 13:50:03 +0300 |
commit | 469b77e421b92ce4662f6f1a47f1e7af9dbd14bd (patch) | |
tree | d5df8cc935c227d87b78748c906dbca7d6f2e21d /include | |
parent | fc5aeeabd28b18c8750e6f7ba269afa8405bcf2a (diff) | |
download | linux-469b77e421b92ce4662f6f1a47f1e7af9dbd14bd.tar.xz |
ALSA: trace: use snd_pcm_direction_name()
We already have snd_pcm_direction_name(). Let's use it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Link: https://patch.msgid.link/87sevrk52f.wl-kuninori.morimoto.gx@renesas.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/trace/events/asoc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/trace/events/asoc.h b/include/trace/events/asoc.h index 202fc3680c36..6696dbcc2b96 100644 --- a/include/trace/events/asoc.h +++ b/include/trace/events/asoc.h @@ -8,6 +8,7 @@ #include <linux/ktime.h> #include <linux/tracepoint.h> #include <sound/jack.h> +#include <sound/pcm.h> #define DAPM_DIRECT "(direct)" #define DAPM_ARROW(dir) (((dir) == SND_SOC_DAPM_DIR_OUT) ? "->" : "<-") @@ -212,7 +213,7 @@ TRACE_EVENT(snd_soc_dapm_connected, ), TP_printk("%s: found %d paths", - __entry->stream ? "capture" : "playback", __entry->paths) + snd_pcm_direction_name(__entry->stream), __entry->paths) ); TRACE_EVENT(snd_soc_jack_irq, |