diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2020-06-17 17:36:33 +0300 |
---|---|---|
committer | Rich Felker <dalias@libc.org> | 2020-08-15 05:05:08 +0300 |
commit | f6bed866f113d0b141f01e2a6472523739886dc8 (patch) | |
tree | cd959f15b578a27dbc4bc19f0ed024158763b7e2 /arch/sh | |
parent | fd722f25a6e4aecefbc58047a690076e57015197 (diff) | |
download | linux-f6bed866f113d0b141f01e2a6472523739886dc8.tar.xz |
Revert "sh: remove needless printk()"
This reverts commit 8b92f34877225c8eb85e3ab7f1177fc248ba26d0.
"data" became the log level in commit 539e786cc37ee5cb ("sh: add loglvl
to show_trace()"), so we do need to keep the printk() before the
continuation in print_trace_address().
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Rich Felker <dalias@libc.org>
Diffstat (limited to 'arch/sh')
-rw-r--r-- | arch/sh/kernel/dumpstack.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/sh/kernel/dumpstack.c b/arch/sh/kernel/dumpstack.c index ad548fc97635..cc8063a01284 100644 --- a/arch/sh/kernel/dumpstack.c +++ b/arch/sh/kernel/dumpstack.c @@ -118,6 +118,7 @@ static int print_trace_stack(void *data, char *name) */ static void print_trace_address(void *data, unsigned long addr, int reliable) { + printk("%s", (char *)data); printk_address(addr, reliable); } |