From 2eb01d341ff14c003d381cde97fbccdab4737afd Mon Sep 17 00:00:00 2001 From: Achin Gupta Date: Wed, 26 Mar 2014 18:44:15 +0000 Subject: [PATCH] Fix build failure due to a typo in TSPD code This patch fixes a build failure when TSPD support is included. The failure was due to a missing semi-colon at the end of a C statement in tspd_common.c Change-Id: I8fbd0d500bd9145b15f862b8686e570b80fcce8c --- services/spd/tspd/tspd_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/spd/tspd/tspd_common.c b/services/spd/tspd/tspd_common.c index f9ca6241..b8065430 100644 --- a/services/spd/tspd/tspd_common.c +++ b/services/spd/tspd/tspd_common.c @@ -82,7 +82,7 @@ int32_t tspd_init_secure_context(uint64_t entrypoint, * Program the SCTLR_EL1 such that upon entry in S-EL1, caches and MMU are * disabled and exception endianess is set to be the same as EL3 */ - sctlr = read_sctlr_el3() + sctlr = read_sctlr_el3(); sctlr &= SCTLR_EE_BIT; sctlr |= SCTLR_EL1_RES1; write_ctx_reg(el1_state, CTX_SCTLR_EL1, sctlr); -- 2.30.2