aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorAntonio Nino Diaz <antonio.ninodiaz@arm.com>2019-03-01 09:35:26 +0000
committerAntonio Nino Diaz <antonio.ninodiaz@arm.com>2019-03-01 10:13:39 +0000
commitb6fd41837f3ff233aeb0be908d5065a86219242b (patch)
tree9a0f129b5f080a1401fc85110f5acaa1b11925a2 /common
parent4476838ae8c03087c4172de393a9c7c8b13dc393 (diff)
downloadtrusted-firmware-a-b6fd41837f3ff233aeb0be908d5065a86219242b.tar.gz
Correctly check for support of Address Authentication
Check for both IMPLEMENTATION_DEFINED and Architected algorithms of Address Authentication. Change-Id: I209dcc6087172cfef7baf8d09e0454628f02cbd0 Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
Diffstat (limited to 'common')
-rw-r--r--common/bl_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/bl_common.c b/common/bl_common.c
index 4e76dd3e6d..61f031bfd1 100644
--- a/common/bl_common.c
+++ b/common/bl_common.c
@@ -265,7 +265,7 @@ void bl_handle_pauth(void)
* system registers. Pointer authentication can't be enabled here or the
* authentication will fail when returning from this function.
*/
- assert(is_armv8_3_pauth_api_present());
+ assert(is_armv8_3_pauth_apa_api_present());
uint64_t *apiakey = plat_init_apiakey();