summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorDouglas Raillard <douglas.raillard@arm.com>2016-10-26 13:11:03 +0100
committerDouglas Raillard <douglas.raillard@arm.com>2016-11-03 10:49:26 +0000
commitfe0be028baf46d1aff09c25d6736bc7a478c2851 (patch)
treeb63524c77862f9ae60ef07029f517bc6002c02b5 /framework
parent5e66cdfa87184a152180d847a3172590532851d0 (diff)
Rename tftf_vector_aarch32 to tftf_vector
This aligns with the AArch64 code which does not have any aarch64 suffix. Change-Id: I8d890850abf98bf7f828fda433e415bcddc4cb26 Signed-off-by: Douglas Raillard <douglas.raillard@arm.com>
Diffstat (limited to 'framework')
-rw-r--r--framework/aarch32/entrypoint.S4
-rw-r--r--framework/aarch32/exceptions.S4
2 files changed, 4 insertions, 4 deletions
diff --git a/framework/aarch32/entrypoint.S b/framework/aarch32/entrypoint.S
index 38737d0..dbb88ba 100644
--- a/framework/aarch32/entrypoint.S
+++ b/framework/aarch32/entrypoint.S
@@ -44,7 +44,7 @@ func tftf_entrypoint
* Set the exception vectors
* --------------------------------------------------------------------
*/
- ldr r0, =tftf_vector_aarch32
+ ldr r0, =tftf_vector
stcopr r0, HVBAR
/* --------------------------------------------------------------------
@@ -123,7 +123,7 @@ func tftf_hotplug_entry
* Set the exception vectors
* --------------------------------------------------------------------
*/
- ldr r0, =tftf_vector_aarch32
+ ldr r0, =tftf_vector
stcopr r0, HVBAR
/* --------------------------------------------------------------------
diff --git a/framework/aarch32/exceptions.S b/framework/aarch32/exceptions.S
index dbc3996..5dbfa33 100644
--- a/framework/aarch32/exceptions.S
+++ b/framework/aarch32/exceptions.S
@@ -32,9 +32,9 @@
#include <asm_macros.S>
#include <tftf.h>
- .globl tftf_vector_aarch32
+ .globl tftf_vector
-vector_base tftf_vector_aarch32
+vector_base tftf_vector
b tftf_entrypoint
b . /* Undef */
b . /* Syscall */