aboutsummaryrefslogtreecommitdiff
path: root/lib/el3_runtime
diff options
context:
space:
mode:
authorSandrine Bailleux <sandrine.bailleux@arm.com>2019-09-18 14:30:09 +0000
committerTrustedFirmware Code Review <review@review.trustedfirmware.org>2019-09-18 14:30:09 +0000
commitea735643cb59eeaca0619c625d77c33ab156b520 (patch)
tree7e579219db5bf87c54fca5fb5edcf975963868c6 /lib/el3_runtime
parent5f2849b64ab2da0572247c75be99c63e28e603fa (diff)
parentee006a79f622b39a35beaaf95d7b42b7078823f8 (diff)
downloadtrusted-firmware-a-ea735643cb59eeaca0619c625d77c33ab156b520.tar.gz
Merge changes from topic "db/unsigned_long" into integration
* changes: Unsigned long should not be used as per coding guidelines SCTLR and ACTLR are 32-bit for AArch32 and 64-bit for AArch64
Diffstat (limited to 'lib/el3_runtime')
-rw-r--r--lib/el3_runtime/aarch64/context_mgmt.c2
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 446d9da925..a05ee5a6e4 100644
--- a/lib/el3_runtime/aarch64/context_mgmt.c
+++ b/lib/el3_runtime/aarch64/context_mgmt.c
@@ -69,7 +69,7 @@ void cm_setup_context(cpu_context_t *ctx, const entry_point_info_t *ep)
uint32_t scr_el3;
el3_state_t *state;
gp_regs_t *gp_regs;
- unsigned long sctlr_elx, actlr_elx;
+ u_register_t sctlr_elx, actlr_elx;
assert(ctx != NULL);