diff options
author | Kuninori Morimoto <[email protected]> | 2024-07-30 02:05:12 +0000 |
---|---|---|
committer | Takashi Iwai <[email protected]> | 2024-08-01 12:50:03 +0200 |
commit | 469b77e421b92ce4662f6f1a47f1e7af9dbd14bd (patch) | |
tree | d5df8cc935c227d87b78748c906dbca7d6f2e21d | |
parent | fc5aeeabd28b18c8750e6f7ba269afa8405bcf2a (diff) |
ALSA: trace: use snd_pcm_direction_name()
We already have snd_pcm_direction_name(). Let's use it.
Signed-off-by: Kuninori Morimoto <[email protected]>
Link: https://patch.msgid.link/[email protected]
Signed-off-by: Takashi Iwai <[email protected]>
-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, |