summaryrefslogtreecommitdiff
path: root/plat/common/aarch64/plat_common.c
diff options
context:
space:
mode:
authorManish Pandey <manish.pandey2@arm.com>2023-05-09 21:48:45 +0200
committerTrustedFirmware Code Review <review@review.trustedfirmware.org>2023-05-09 21:48:45 +0200
commit269f3daefbfeb07904bacf7982a2105aa6275761 (patch)
tree9bffb6b15ee832bb4e5b2ae75ca656d729c2cc54 /plat/common/aarch64/plat_common.c
parentfdf9d768ea0d288aad56e627fda54f881fda606e (diff)
parent6503ff2910ae5edba9edc505c8c19dce7be4d45c (diff)
downloadarm-trusted-firmware-269f3daefbfeb07904bacf7982a2105aa6275761.tar.gz
Merge changes from topic "mp/feat_ras" into integration
* changes: refactor(cpufeat): enable FEAT_RAS for FEAT_STATE_CHECKED refactor(ras): replace RAS_EXTENSION with FEAT_RAS
Diffstat (limited to 'plat/common/aarch64/plat_common.c')
-rw-r--r--plat/common/aarch64/plat_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plat/common/aarch64/plat_common.c b/plat/common/aarch64/plat_common.c
index 042916a7d..eca81b11f 100644
--- a/plat/common/aarch64/plat_common.c
+++ b/plat/common/aarch64/plat_common.c
@@ -11,7 +11,7 @@
#include <arch_helpers.h>
#include <common/debug.h>
#include <drivers/console.h>
-#if RAS_EXTENSION
+#if RAS_FFH_SUPPORT
#include <lib/extensions/ras.h>
#endif
#include <lib/xlat_tables/xlat_mmu_helpers.h>
@@ -81,7 +81,7 @@ const char *get_el_str(unsigned int el)
void plat_default_ea_handler(unsigned int ea_reason, uint64_t syndrome, void *cookie,
void *handle, uint64_t flags)
{
-#if RAS_EXTENSION
+#if RAS_FFH_SUPPORT
/* Call RAS EA handler */
int handled = ras_ea_handler(ea_reason, syndrome, cookie, handle, flags);
if (handled != 0)