This reverts commit
c3f3c93d1e564e50f3a054d457a15cf1dce8468a.
"data" became the log level in commit
77cc3577e7a923fa ("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>
*/
static void print_trace_address(void *data, unsigned long addr, int reliable)
{
+ printk("%s", (char *)data);
printk_address(addr, reliable);
}