This reverts commit
3c3ee0d73cb6eebfb258516a727847806b0036e2.
"data" became the log level in commit
f9b58531cab3cd32 ("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);
}