summaryrefslogtreecommitdiff
path: root/lib/xlat_tables/aarch32/nonlpae_tables.c
diff options
context:
space:
mode:
authorManish Pandey <manish.pandey2@arm.com>2023-05-09 22:05:52 +0200
committerTrustedFirmware Code Review <review@review.trustedfirmware.org>2023-05-09 22:05:52 +0200
commit4bd8c929b4bc6e1731c2892b38d4a8c43e8e89dc (patch)
treef0aff986c8534c521f0826f9838061a5bea66414 /lib/xlat_tables/aarch32/nonlpae_tables.c
parent269f3daefbfeb07904bacf7982a2105aa6275761 (diff)
parent1b491eead580d7849a45a38f2c6a935a5d8d1160 (diff)
downloadarm-trusted-firmware-4bd8c929b4bc6e1731c2892b38d4a8c43e8e89dc.tar.gz
Merge changes I1bfa797e,I0ec7a70e into integration
* changes: fix(tree): correct some typos fix(rockchip): use semicolon instead of comma
Diffstat (limited to 'lib/xlat_tables/aarch32/nonlpae_tables.c')
-rw-r--r--lib/xlat_tables/aarch32/nonlpae_tables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/xlat_tables/aarch32/nonlpae_tables.c b/lib/xlat_tables/aarch32/nonlpae_tables.c
index 5646f347c..f58240470 100644
--- a/lib/xlat_tables/aarch32/nonlpae_tables.c
+++ b/lib/xlat_tables/aarch32/nonlpae_tables.c
@@ -272,7 +272,7 @@ void mmap_add_region(unsigned long long base_pa, uintptr_t base_va,
/* Make room for new region by moving other regions up by one place */
(void)memmove(mm + 1, mm, (uintptr_t)mm_last - (uintptr_t)mm);
- /* Check we haven't lost the empty sentinal from the end of the array */
+ /* Check we haven't lost the empty sentinel from the end of the array */
assert(mm_last->size == 0U);
mm->base_pa = base_pa;