aboutsummaryrefslogtreecommitdiff
path: root/src/target/target.c
diff options
context:
space:
mode:
authorKamal Dasu <kdasu.kdev@gmail.com>2013-08-29 11:53:26 -0400
committerAndreas Fritiofson <andreas.fritiofson@gmail.com>2014-07-03 21:45:04 +0000
commit59c2239bfd2db3d3a6f3f3756f79e47a0aa6591d (patch)
tree3defc2c9c21348b1faf68168eaae2117721fd287 /src/target/target.c
parent84281d711ea8b8d4d2791ff03915b5607c7b6cd4 (diff)
cortex_a: target implementation renames cortex_a8 to cortex_a
A previous commit changes the target name used by tcl scripts. commit d9ba56c295f057e716519a798bf9cdb4898c24f4 target: rename cortex_a8 to cortex_a The current change renames target functions and definitions in the implementation from cortex_a8 to cortex_a. This prepares the implementation to support Cortex-A8, A9, A15-MPCore in one place. Change-Id: I73b5a38a92c12ba5bd3b806fbbb664817575a6d7 Signed-off-by: Kamal Dasu <kdasu.kdev@gmail.com> Reviewed-on: http://openocd.zylin.com/1599 Tested-by: jenkins Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
Diffstat (limited to 'src/target/target.c')
-rw-r--r--src/target/target.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/target.c b/src/target/target.c
index 87b3d1cb..151e8a37 100644
--- a/src/target/target.c
+++ b/src/target/target.c
@@ -88,7 +88,7 @@ extern struct target_type feroceon_target;
extern struct target_type dragonite_target;
extern struct target_type xscale_target;
extern struct target_type cortexm_target;
-extern struct target_type cortexa8_target;
+extern struct target_type cortexa_target;
extern struct target_type cortexr4_target;
extern struct target_type arm11_target;
extern struct target_type mips_m4k_target;
@@ -117,7 +117,7 @@ static struct target_type *target_types[] = {
&dragonite_target,
&xscale_target,
&cortexm_target,
- &cortexa8_target,
+ &cortexa_target,
&cortexr4_target,
&arm11_target,
&mips_m4k_target,