diff options
| author | Tom Rini <[email protected]> | 2024-10-22 14:11:20 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-10-22 14:11:20 -0600 |
| commit | 392ff1449f7d30cc48fd4d17320d05882cd68f2e (patch) | |
| tree | 14cbc33a7c2d0d57f72e537dc66a23bd694102de /drivers | |
| parent | 6606a6adfaf8517cff7e5fe0fb206beed80087d5 (diff) | |
| parent | 722073a0653dd18d0148dd435f067be4e82f9129 (diff) | |
Merge tag 'video-20241022' of https://source.denx.de/u-boot/custodians/u-boot-video
CI: https://source.denx.de/u-boot/custodians/u-boot-video/-/pipelines/22907
* VNBYTES() comment fix
* add VIDEO dependency for FDT_SIMPLEFB
* fdt_simplefb: drop not needed CONFIG_VIDEO check
* am62x,evm: preserve splash screen while OS is booting
* simplefb: warning fix for CONFIG_FDT_64BIT=n
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/video/simplefb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/video/simplefb.c b/drivers/video/simplefb.c index cb518b149cb..239b006744d 100644 --- a/drivers/video/simplefb.c +++ b/drivers/video/simplefb.c @@ -27,7 +27,8 @@ static int simple_video_probe(struct udevice *dev) return -EINVAL; } - debug("%s: base=%llx, size=%llu\n", __func__, base, size); + debug("%s: base=%llx, size=%llu\n", + __func__, (unsigned long long)base, (unsigned long long)size); /* * TODO is there some way to reserve the framebuffer |
