diff options
author | Dimitris Papastamos <dimitris.papastamos@arm.com> | 2018-08-30 16:09:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-30 16:09:30 +0100 |
commit | 7bb907e0d9123e060b40b6468acda1e7d95c9143 (patch) | |
tree | 526f4afdace89b978652023795c982b686c29512 /lib | |
parent | 612fa950067dfed6ffd4aa6bbfdf57a31e72775a (diff) | |
parent | 24f671f3a9047b1ea5a989d10342758fa50ac7d7 (diff) | |
download | platform_external_arm-trusted-firmware-7bb907e0d9123e060b40b6468acda1e7d95c9143.tar.gz platform_external_arm-trusted-firmware-7bb907e0d9123e060b40b6468acda1e7d95c9143.tar.bz2 platform_external_arm-trusted-firmware-7bb907e0d9123e060b40b6468acda1e7d95c9143.zip |
Merge pull request #1544 from jwerner-chromium/JW_handle_ea
context_mgmt: Fix HANDLE_EA_EL3_FIRST implementation
Diffstat (limited to 'lib')
-rw-r--r-- | lib/el3_runtime/aarch64/context_mgmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/el3_runtime/aarch64/context_mgmt.c b/lib/el3_runtime/aarch64/context_mgmt.c index 2812bdaab..ee5fe4f9d 100644 --- a/lib/el3_runtime/aarch64/context_mgmt.c +++ b/lib/el3_runtime/aarch64/context_mgmt.c @@ -105,7 +105,7 @@ void cm_setup_context(cpu_context_t *ctx, const entry_point_info_t *ep) if (EP_GET_ST(ep->h.attr)) scr_el3 |= SCR_ST_BIT; -#ifndef HANDLE_EA_EL3_FIRST +#if !HANDLE_EA_EL3_FIRST /* * SCR_EL3.EA: Do not route External Abort and SError Interrupt External * to EL3 when executing at a lower EL. When executing at EL3, External |