aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSoby Mathew <soby.mathew@arm.com>2019-05-15 15:54:32 +0000
committerTrustedFirmware Code Review <review@review.trustedfirmware.org>2019-05-15 15:54:32 +0000
commiteefdb4fb218b38849f68a4024671fbb98f56c572 (patch)
tree4dfeffe1aa23d573bc168362ce3591da9fbf16e5
parentacc18c1fcab7bca22771304812c5dfeef255df89 (diff)
parent02a85c1116369488784c5ed4d67f326c22455e94 (diff)
Merge "Remove .arch directives from spinlock.S" into integration
-rw-r--r--lib/locks/exclusive/aarch64/spinlock.S6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/locks/exclusive/aarch64/spinlock.S b/lib/locks/exclusive/aarch64/spinlock.S
index e2f9eaa4..d0569f1c 100644
--- a/lib/locks/exclusive/aarch64/spinlock.S
+++ b/lib/locks/exclusive/aarch64/spinlock.S
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved.
+ * Copyright (c) 2013-2019, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
@@ -39,8 +39,6 @@
#if USE_CAS
- .arch armv8.1-a
-
/*
* Acquire lock using Compare and Swap instruction.
*
@@ -60,8 +58,6 @@ func spin_lock
ret
endfunc spin_lock
- .arch armv8-a
-
#else /* !USE_CAS */
/*