diff options
author | Anatol Pomozov <anatol.pomozov@gmail.com> | 2014-09-24 11:17:14 -0700 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2014-09-25 14:05:58 +0100 |
commit | e03f73a01f010b29504ceebda3c4fca25468516d (patch) | |
tree | ccdc55c78cd81e6c71d0b9b20bebb5f7b393f9b4 /include/trace | |
parent | 5c7c343a1159d1cb7604b6137cf547b2c1e2375d (diff) | |
download | linux-e03f73a01f010b29504ceebda3c4fca25468516d.tar.bz2 |
ASoC: trace: Remove trailing new-lines in trace messages
These new-lines add empty lines to trace output
Signed-off-by: Anatol Pomozov <anatol.pomozov@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/trace')
-rw-r--r-- | include/trace/events/asoc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/trace/events/asoc.h b/include/trace/events/asoc.h index 0194a641e4e2..b04ee7e5a466 100644 --- a/include/trace/events/asoc.h +++ b/include/trace/events/asoc.h @@ -175,7 +175,7 @@ TRACE_EVENT(snd_soc_dapm_output_path, __entry->path_sink = (long)path->sink; ), - TP_printk("%c%s -> %s -> %s\n", + TP_printk("%c%s -> %s -> %s", (int) __entry->path_sink && (int) __entry->path_connect ? '*' : ' ', __get_str(wname), __get_str(pname), __get_str(psname)) @@ -204,7 +204,7 @@ TRACE_EVENT(snd_soc_dapm_input_path, __entry->path_source = (long)path->source; ), - TP_printk("%c%s <- %s <- %s\n", + TP_printk("%c%s <- %s <- %s", (int) __entry->path_source && (int) __entry->path_connect ? '*' : ' ', __get_str(wname), __get_str(pname), __get_str(psname)) @@ -226,7 +226,7 @@ TRACE_EVENT(snd_soc_dapm_connected, __entry->stream = stream; ), - TP_printk("%s: found %d paths\n", + TP_printk("%s: found %d paths", __entry->stream ? "capture" : "playback", __entry->paths) ); |