From: Heiko Schocher Date: Sat, 9 Nov 2019 03:56:10 +0000 (+0100) Subject: bdinfo: show multi_dtb_fit X-Git-Tag: v2025.01-rc5-pxa1908~2621^2~5 X-Git-Url: http://git.dujemihanovic.xyz/img/%7B%7B%20%28.OutputFormats.Get?a=commitdiff_plain;h=8ad0c66437a3c5bafbbaddffd58436ba6763837d;p=u-boot.git bdinfo: show multi_dtb_fit if MULTI_DTB_FIT is enabled it is helpful to display the value of gd->multi_dtb_fit in bdinfo. Signed-off-by: Heiko Schocher Reviewed-by: Simon Glass --- diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c index abd9151432..d6a7175b37 100644 --- a/cmd/bdinfo.c +++ b/cmd/bdinfo.c @@ -348,6 +348,9 @@ static int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, #if CONFIG_VAL(SYS_MALLOC_F_LEN) printf("Early malloc usage: %lx / %x\n", gd->malloc_ptr, CONFIG_VAL(SYS_MALLOC_F_LEN)); +#endif +#if CONFIG_IS_ENABLED(MULTI_DTB_FIT) + print_num("multi_dtb_fit", (ulong)gd->multi_dtb_fit); #endif if (gd->fdt_blob) print_num("fdt_blob", (ulong)gd->fdt_blob);