common: image-android: don't print fdt load addr/size info

The fdt load addr doesn't make any sense from android hdr,
and it's easy to make user to be confused with "fdt_addr_r".

Change-Id: I20c9047a1a3cef6987d3a1a1c85b6a0f3af15ad2
Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
This commit is contained in:
Joseph Chen 2019-06-19 18:03:11 +08:00
parent 0d0d4395c1
commit fe5b67570a
1 changed files with 2 additions and 2 deletions

View File

@ -251,8 +251,8 @@ int android_image_get_fdt(const struct andr_img_hdr *hdr,
*rd_data += ALIGN(hdr->ramdisk_size, hdr->page_size);
#endif
printf("FDT load addr 0x%08x size %u KiB\n",
hdr->second_addr, DIV_ROUND_UP(hdr->second_size, 1024));
debug("FDT load addr 0x%08x size %u KiB\n",
hdr->second_addr, DIV_ROUND_UP(hdr->second_size, 1024));
return 0;
}