mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 10:04:26 +00:00
fix(xilinx): fix comment about MEM_BASE/SIZE
Comment is not showing correct macro name that's why fix it. Signed-off-by: Michal Simek <michal.simek@amd.com> Change-Id: I8bc38534309285af8a27ee43782e03e9d0470267
This commit is contained in:
parent
e6f7929d12
commit
1e2a5e2851
4 changed files with 8 additions and 8 deletions
|
@ -32,7 +32,7 @@ ifdef MEM_BASE
|
|||
$(eval $(call add_define,MEM_BASE))
|
||||
|
||||
ifndef MEM_SIZE
|
||||
$(error "ATF_BASE defined without ATF_SIZE")
|
||||
$(error "MEM_BASE defined without MEM_SIZE")
|
||||
endif
|
||||
$(eval $(call add_define,MEM_SIZE))
|
||||
|
||||
|
@ -45,7 +45,7 @@ ifdef BL32_MEM_BASE
|
|||
$(eval $(call add_define,BL32_MEM_BASE))
|
||||
|
||||
ifndef BL32_MEM_SIZE
|
||||
$(error "BL32_BASE defined without BL32_SIZE")
|
||||
$(error "BL32_MEM_BASE defined without BL32_MEM_SIZE")
|
||||
endif
|
||||
$(eval $(call add_define,BL32_MEM_SIZE))
|
||||
endif
|
||||
|
|
|
@ -22,7 +22,7 @@ ifdef VERSAL_ATF_MEM_BASE
|
|||
$(eval $(call add_define,VERSAL_ATF_MEM_BASE))
|
||||
|
||||
ifndef VERSAL_ATF_MEM_SIZE
|
||||
$(error "VERSAL_ATF_BASE defined without VERSAL_ATF_SIZE")
|
||||
$(error "VERSAL_ATF_MEM_BASE defined without VERSAL_ATF_MEM_SIZE")
|
||||
endif
|
||||
$(eval $(call add_define,VERSAL_ATF_MEM_SIZE))
|
||||
|
||||
|
@ -35,7 +35,7 @@ ifdef VERSAL_BL32_MEM_BASE
|
|||
$(eval $(call add_define,VERSAL_BL32_MEM_BASE))
|
||||
|
||||
ifndef VERSAL_BL32_MEM_SIZE
|
||||
$(error "VERSAL_BL32_BASE defined without VERSAL_BL32_SIZE")
|
||||
$(error "VERSAL_BL32_MEM_BASE defined without VERSAL_BL32_MEM_SIZE")
|
||||
endif
|
||||
$(eval $(call add_define,VERSAL_BL32_MEM_SIZE))
|
||||
endif
|
||||
|
|
|
@ -34,7 +34,7 @@ ifdef VERSAL_NET_ATF_MEM_BASE
|
|||
$(eval $(call add_define,VERSAL_NET_ATF_MEM_BASE))
|
||||
|
||||
ifndef VERSAL_NET_ATF_MEM_SIZE
|
||||
$(error "VERSAL_NET_ATF_BASE defined without VERSAL_NET_ATF_SIZE")
|
||||
$(error "VERSAL_NET_ATF_MEM_BASE defined without VERSAL_NET_ATF_MEM_SIZE")
|
||||
endif
|
||||
$(eval $(call add_define,VERSAL_NET_ATF_MEM_SIZE))
|
||||
|
||||
|
@ -47,7 +47,7 @@ ifdef VERSAL_NET_BL32_MEM_BASE
|
|||
$(eval $(call add_define,VERSAL_NET_BL32_MEM_BASE))
|
||||
|
||||
ifndef VERSAL_NET_BL32_MEM_SIZE
|
||||
$(error "VERSAL_NET_BL32_BASE defined without VERSAL_NET_BL32_SIZE")
|
||||
$(error "VERSAL_NET_BL32_MEM_BASE defined without VERSAL_NET_BL32_MEM_SIZE")
|
||||
endif
|
||||
$(eval $(call add_define,VERSAL_NET_BL32_MEM_SIZE))
|
||||
endif
|
||||
|
|
|
@ -39,7 +39,7 @@ ifdef ZYNQMP_ATF_MEM_BASE
|
|||
$(eval $(call add_define,ZYNQMP_ATF_MEM_BASE))
|
||||
|
||||
ifndef ZYNQMP_ATF_MEM_SIZE
|
||||
$(error "ZYNQMP_ATF_BASE defined without ZYNQMP_ATF_SIZE")
|
||||
$(error "ZYNQMP_ATF_MEM_BASE defined without ZYNQMP_ATF_MEM_SIZE")
|
||||
endif
|
||||
$(eval $(call add_define,ZYNQMP_ATF_MEM_SIZE))
|
||||
|
||||
|
@ -56,7 +56,7 @@ ifdef ZYNQMP_BL32_MEM_BASE
|
|||
$(eval $(call add_define,ZYNQMP_BL32_MEM_BASE))
|
||||
|
||||
ifndef ZYNQMP_BL32_MEM_SIZE
|
||||
$(error "ZYNQMP_BL32_BASE defined without ZYNQMP_BL32_SIZE")
|
||||
$(error "ZYNQMP_BL32_MEM_BASE defined without ZYNQMP_BL32_MEM_SIZE")
|
||||
endif
|
||||
$(eval $(call add_define,ZYNQMP_BL32_MEM_SIZE))
|
||||
endif
|
||||
|
|
Loading…
Add table
Reference in a new issue