aboutsummaryrefslogtreecommitdiff
path: root/bl32
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2020-03-25 20:52:44 +0900
committerMasahiro Yamada <yamada.masahiro@socionext.com>2020-03-31 16:08:21 +0900
commit85ee795ca286a5a07a215902cc8d39a92c845637 (patch)
tree3ceac3eb7c49ed8971701443905d7fa14db3708b /bl32
parent11a3c5ee7325f925baee9a53c865d0fc403dab06 (diff)
downloadtrusted-firmware-a-85ee795ca286a5a07a215902cc8d39a92c845637.tar.gz
bl32: sp_min: reduce the alignment for fconf_populator
sp_min.ld.S is used for aarch32. ALIGN(4) is used for alignment of the other structures. I do not think struct fconf_populator is a special case. Let's use ALIGN(4) here too. Perhaps, this is just a copy-paste mistake of commit 26d1e0c33098 ("fconf: necessary modifications to support fconf in BL31 & SP_MIN"). Change-Id: I29f4c68680842c1b5ef913934b4ccf378e9bfcfb Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'bl32')
-rw-r--r--bl32/sp_min/sp_min.ld.S4
1 files changed, 2 insertions, 2 deletions
diff --git a/bl32/sp_min/sp_min.ld.S b/bl32/sp_min/sp_min.ld.S
index a90a805a0c..66f3b113de 100644
--- a/bl32/sp_min/sp_min.ld.S
+++ b/bl32/sp_min/sp_min.ld.S
@@ -56,7 +56,7 @@ SECTIONS
KEEP(*(rt_svc_descs))
__RT_SVC_DESCS_END__ = .;
- . = ALIGN(8);
+ . = ALIGN(4);
__FCONF_POPULATOR_START__ = .;
KEEP(*(.fconf_populator))
__FCONF_POPULATOR_END__ = .;
@@ -98,7 +98,7 @@ SECTIONS
KEEP(*(rt_svc_descs))
__RT_SVC_DESCS_END__ = .;
- . = ALIGN(8);
+ . = ALIGN(4);
__FCONF_POPULATOR_START__ = .;
KEEP(*(.fconf_populator))
__FCONF_POPULATOR_END__ = .;