diff options
author | Michal Simek | 2020-08-12 12:16:49 +0200 |
---|---|---|
committer | Michal Simek | 2020-08-20 09:58:16 +0200 |
commit | ca0f616530316f324516fd91a2d90e0449f1e526 (patch) | |
tree | 4ff33efe41a26895cf390886a17bfc108fb06ccb /board | |
parent | 653809f43f4d1872825ca281e488b1e7b56b9e95 (diff) |
xilinx: common: Check return value from variable setup
env_set..() can failed that's why check return status and report it back to
make sure that user is aware that's something went wrong.
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'board')
-rw-r--r-- | board/xilinx/common/board.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/board/xilinx/common/board.c b/board/xilinx/common/board.c index 901591ba2a8..581c88ad49a 100644 --- a/board/xilinx/common/board.c +++ b/board/xilinx/common/board.c @@ -77,10 +77,15 @@ void *board_fdt_blob_setup(void) int board_late_init_xilinx(void) { - env_set_hex("script_offset_f", CONFIG_BOOT_SCRIPT_OFFSET); + u32 ret = 0; - env_set_addr("bootm_low", (void *)gd->ram_base); - env_set_addr("bootm_size", (void *)gd->ram_size); + ret |= env_set_hex("script_offset_f", CONFIG_BOOT_SCRIPT_OFFSET); + + ret |= env_set_addr("bootm_low", (void *)gd->ram_base); + ret |= env_set_addr("bootm_size", (void *)gd->ram_size); + + if (ret) + printf("%s: Saving run time variables FAILED\n", __func__); return 0; } |