Skip to content
Snippets Groups Projects
Commit 722073a0 authored by Eva Kurchatova's avatar Eva Kurchatova Committed by Anatolij Gustschin
Browse files

video: simplefb: Fix build warn with CONFIG_FDT_64BIT=n


Fix compile warning with !CONFIG_FDT_64BIT by
casting the variable in the debug print.

Signed-off-by: default avatarEva Kurchatova <lekkit@at.encryp.ch>
Reported-by: default avatarLeo Yu-Chi Liang <ycliang@andestech.com>
parent 7aa6906d
No related branches found
Tags v2024.10-rc4
No related merge requests found
Pipeline #22909 passed
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment