From: Simon Glass Date: Sun, 16 Jul 2023 03:39:14 +0000 (-0600) Subject: log: Support outputing function names in SPL X-Git-Tag: v2025.01-rc5-pxa1908~938^2~5 X-Git-Url: http://git.dujemihanovic.xyz/%22http:/www.sics.se/static/git-favicon.png?a=commitdiff_plain;h=f9ebfd7c7acebd3d28a3be1d33e30c6f88a05302;p=u-boot.git log: Support outputing function names in SPL The output is garbled when tiny printf() is used. Correct this by adding a special case. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/common/log_console.c b/common/log_console.c index f1dcc04b97..bb091ce21a 100644 --- a/common/log_console.c +++ b/common/log_console.c @@ -37,8 +37,14 @@ static int log_console_emit(struct log_device *ldev, struct log_rec *rec) printf("%s:", rec->file); if (fmt & BIT(LOGF_LINE)) printf("%d-", rec->line); - if (fmt & BIT(LOGF_FUNC)) - printf("%*s()", CONFIG_LOGF_FUNC_PAD, rec->func); + if (fmt & BIT(LOGF_FUNC)) { + if (CONFIG_IS_ENABLED(USE_TINY_PRINTF)) { + printf("%s()", rec->func); + } else { + printf("%*s()", CONFIG_LOGF_FUNC_PAD, + rec->func); + } + } } if (fmt & BIT(LOGF_MSG)) printf("%s%s", add_space ? " " : "", rec->msg);