diff options
author | Tom Rini <trini@konsulko.com> | 2019-07-30 19:19:54 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-07-30 19:19:54 -0400 |
commit | a239147fa2c0c3fe849ccaffd72c4dc4cae2be71 (patch) | |
tree | 2675e87a98bdd76e337e8cafe2b6f9e660b1f72e /cmd | |
parent | 476a3143d7c1a94b795a4804ab894893f490cf33 (diff) | |
parent | 42a7ce27d97022f4abbba142dfa00d1450512f0a (diff) | |
download | u-boot-a239147fa2c0c3fe849ccaffd72c4dc4cae2be71.tar.gz |
Merge tag 'video-for-2019.10-rc1' of https://gitlab.denx.de/u-boot/custodians/u-boot-videoWIP/30Jul2019
- fix EDID mode filtering
- extend mxc_ipuv3_fb to enable backlight/display
- include fb_base in global_data for DM_VIDEO
- show frame buffer address via board info
as used to be with legacy VIDEO support
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/bdinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 /* |