summaryrefslogtreecommitdiff
path: root/include/configs/imx6_logic.h
diff options
context:
space:
mode:
authorAdam Ford <aford173@gmail.com>2019-02-16 23:09:45 +0300
committerStefano Babic <sbabic@denx.de>2019-03-13 11:14:35 +0300
commit12d64098a58dbc36dd4886e58841115f532a7168 (patch)
treec1b83c08ba68f0d906fb73978a2483bcf651b251 /include/configs/imx6_logic.h
parent3f77c933eeb222d44787d625cbc68539708af14f (diff)
downloadu-boot-12d64098a58dbc36dd4886e58841115f532a7168.tar.xz
ARM: imx6_logic: Fix typo in FDT address
A few scripts reference 'fdt_addr' when they should reference 'fdt_addr_r' so this patch fixes those broken references. Signed-off-by: Adam Ford <aford173@gmail.com>
Diffstat (limited to 'include/configs/imx6_logic.h')
-rw-r--r--include/configs/imx6_logic.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/configs/imx6_logic.h b/include/configs/imx6_logic.h
index 70cc63fc1b..a121064e37 100644
--- a/include/configs/imx6_logic.h
+++ b/include/configs/imx6_logic.h
@@ -68,8 +68,8 @@
"nandboot=echo Booting from nand ...; " \
" run nandargs;" \
" nand read ${loadaddr} kernel ${kernelsize};" \
- " nand read ${fdt_addr} dtb;" \
- " bootz ${loadaddr} - ${fdt_addr}\0" \
+ " nand read ${fdt_addr_r} dtb;" \
+ " bootz ${loadaddr} - ${fdt_addr_r}\0" \
"nandramboot=echo Booting RAMdisk from nand ...; " \
" nand read ${ramdisk_addr_r} fs ${ramdisksize};" \
" nand read ${loadaddr} kernel ${kernelsize};" \
@@ -88,8 +88,8 @@
"fi; " \
"${get_cmd} ${image}; " \
"if test ${boot_fdt} = yes || test ${boot_fdt} = try; then " \
- "if ${get_cmd} ${fdt_addr} ${fdt_file}; then " \
- "bootz ${loadaddr} - ${fdt_addr}; " \
+ "if ${get_cmd} ${fdt_addr_r} ${fdt_file}; then " \
+ "bootz ${loadaddr} - ${fdt_addr_r}; " \
"else " \
"if test ${boot_fdt} = try; then " \
"bootz; " \