diff options
author | Andrey Zhizhikin <andrey.zhizhikin@leica-geosystems.com> | 2022-01-17 12:31:46 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2022-02-05 15:49:01 +0100 |
commit | 8c34cdc7358629b153fafd6bd4e27601d3ad508b (patch) | |
tree | 8d80f59f699d55867c14c8129fd2a03901485948 /include | |
parent | efaf9a2b32d8e054874515b6b52751858c614e92 (diff) | |
download | u-boot-8c34cdc7358629b153fafd6bd4e27601d3ad508b.tar.gz u-boot-8c34cdc7358629b153fafd6bd4e27601d3ad508b.tar.bz2 u-boot-8c34cdc7358629b153fafd6bd4e27601d3ad508b.zip |
imx: ventana: correct splashimage load address
Commit 72d81360aabd ("global: Convert CONFIG_LOADADDR to
CONFIG_SYS_LOADADDR") dropped the usage of LOADADDR and replaced it with
SYS_LOADADDR.
Use the correct macro in environment by replacing CONFIG_LOADADDR with
CONFIG_SYS_LOADADDR.
Fixes: d75ebf3482c3 ("imx: ventana: fix splash logo drawing")
Signed-off-by: Andrey Zhizhikin <andrey.zhizhikin@leica-geosystems.com>
Cc: Tim Harvey <tharvey@gateworks.com>
Reviewed-by: Fabio Estevam <festevam@gmail.com>
Acked-By: Tim Harvey <tharvey@gateworks.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/gw_ventana.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/gw_ventana.h b/include/configs/gw_ventana.h index 2853d75a16..8f73c3b873 100644 --- a/include/configs/gw_ventana.h +++ b/include/configs/gw_ventana.h @@ -104,7 +104,7 @@ #define CONFIG_EXTRA_ENV_SETTINGS_COMMON \ "splashpos=m,m\0" \ - "splashimage=" __stringify(CONFIG_LOADADDR) "\0" \ + "splashimage=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \ "usb_pgood_delay=2000\0" \ "console=ttymxc1\0" \ "bootdevs=usb mmc sata flash\0" \ |