From: Heiko Schocher Date: Mon, 22 Jul 2019 04:49:06 +0000 (+0200) Subject: bdinfo: show fb base with DM_VIDEO X-Git-Url: http://git.dujemihanovic.xyz/%22/img/sics.gif/%22/static/git-favicon.png?a=commitdiff_plain;h=5a760f61c5345295d499ec9590b3b1c2f6a46b9d;p=u-boot.git bdinfo: show fb base with DM_VIDEO show Framebuffer base with CONFIG_DM_VIDEO enabled. Signed-off-by: Heiko Schocher --- diff --git a/cmd/bdinfo.c b/cmd/bdinfo.c index f576e226ee..86c17dc427 100644 --- a/cmd/bdinfo.c +++ b/cmd/bdinfo.c @@ -328,7 +328,7 @@ static int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, print_num("reloc off", gd->reloc_off); print_num("irq_sp", gd->irq_sp); /* irq stack pointer */ print_num("sp start ", gd->start_addr_sp); -#if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) +#if defined(CONFIG_LCD) || defined(CONFIG_VIDEO) || defined(CONFIG_DM_VIDEO) print_num("FB base ", gd->fb_base); #endif /*