diff options
author | Tom Rini <trini@konsulko.com> | 2021-04-11 07:40:25 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-04-11 07:40:25 -0400 |
commit | c6a4ee2aaee541c12d290dd25561e771396817cc (patch) | |
tree | dcc1c02b7c2dd1b6834c29317e16eab747558da0 /common/board_f.c | |
parent | 59e84da0b88e4465f15d196bba59f22c906fa50d (diff) | |
parent | 38e18d6392fca9f6809cb3079af3069efc3d181f (diff) |
Merge tag 'video-2021-07-rc1' of https://source.denx.de/u-boot/custodians/u-boot-video
- rk3399 eDP support
- pwm backlight without a known period_ns
- add Chrome OS EC PWM driver
- Kconfig SIMPLE_PANEL DM_GPIO dependency
- remove mb862xx driver remnants
- fix KiB format in reserve_video() debug trace
- fix tegra124 sor CSTM LVDS_EN_ENABLE/DISABLE config
- fix line padding calculation for 16 and 24 BPP bitmaps
Diffstat (limited to 'common/board_f.c')
-rw-r--r-- | common/board_f.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/board_f.c b/common/board_f.c index 0cddf0359d..203e965799 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -394,7 +394,7 @@ static int reserve_video(void) if (ret) return ret; debug("Reserving %luk for video at: %08lx\n", - (unsigned long)gd->relocaddr - addr, addr); + ((unsigned long)gd->relocaddr - addr) >> 10, addr); gd->relocaddr = addr; #elif defined(CONFIG_LCD) # ifdef CONFIG_FB_ADDR |