arm64: zynqmp: Rename fw_dtb variable to fdt_blob

The reason for this change is just get in sync with board_fdt_blob_setup()
available at lib/fdtdec.c.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
Michal Simek 2019-12-19 17:43:07 +01:00
parent f071cdab85
commit db5b253f01

View File

@ -40,13 +40,13 @@ int zynq_board_read_rom_ethaddr(unsigned char *ethaddr)
#if defined(CONFIG_OF_BOARD)
void *board_fdt_blob_setup(void)
{
static void *fw_dtb = (void *)CONFIG_XILINX_OF_BOARD_DTB_ADDR;
static void *fdt_blob = (void *)CONFIG_XILINX_OF_BOARD_DTB_ADDR;
if (fdt_magic(fw_dtb) != FDT_MAGIC) {
printf("DTB is not passed via %p\n", fw_dtb);
if (fdt_magic(fdt_blob) != FDT_MAGIC) {
printf("DTB is not passed via %p\n", fdt_blob);
return NULL;
}
return fw_dtb;
return fdt_blob;
}
#endif