From: Heinrich Schuchardt Date: Mon, 8 Jun 2020 16:04:22 +0000 (+0200) Subject: log: uclass_get_name() depends on CONFIG_SPL_DM X-Git-Tag: v2020.10~120^2~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6c9e4175491900b9fa5d9283c4a449f00285162d;p=platform%2Fkernel%2Fu-boot.git log: uclass_get_name() depends on CONFIG_SPL_DM If CONFIG_SPL_DM=n and CONFIG_SPL_LOG=y a build error occurs: ld.bfd: common/built-in.o: in function `log_get_cat_name': common/log.c:48: undefined reference to `uclass_get_name' make[1]: *** [scripts/Makefile.spl:422: spl/u-boot-spl] Error 1 Call uclass_get_name() only if DM is enabled. Signed-off-by: Heinrich Schuchardt Reviewed-by: Simon Glass --- diff --git a/common/log.c b/common/log.c index c5b9b48..d7ce74f 100644 --- a/common/log.c +++ b/common/log.c @@ -45,7 +45,11 @@ const char *log_get_cat_name(enum log_category_t cat) if (cat >= LOGC_NONE) return log_cat_name[cat - LOGC_NONE]; +#if CONFIG_IS_ENABLED(DM) name = uclass_get_name((enum uclass_id)cat); +#else + name = NULL; +#endif return name ? name : ""; }