From: Bin Meng <bin.m...@windriver.com> At present prior_stage_fdt_address is declared as phys_addr_t. On a 32-bit platform where phys_addr_t can be 64-bit, assigning its value to gd->fdt_blob which is a pointer, can cause warnings.
Cast it to uintptr_t before the assignment. Signed-off-by: Bin Meng <bin.m...@windriver.com> Reviewed-by: Simon Glass <s...@chromium.org> --- (no changes since v1) lib/fdtdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Applied to u-boot-dm, thanks!