summaryrefslogtreecommitdiff
path: root/src/target/armv7a.c
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2009-11-16 17:58:58 -0800
committerDavid Brownell <dbrownell@users.sourceforge.net>2009-11-16 17:58:58 -0800
commite722396890bdb07553959258c585853edfbb291c (patch)
tree8de44860ad43b8b84281475d0eaf9e931a8cebc8 /src/target/armv7a.c
parent36a538c6d76c6a7483e6925c12669cd91807d918 (diff)
downloadopenocd+libswd-e722396890bdb07553959258c585853edfbb291c.tar.gz
openocd+libswd-e722396890bdb07553959258c585853edfbb291c.tar.bz2
openocd+libswd-e722396890bdb07553959258c585853edfbb291c.tar.xz
openocd+libswd-e722396890bdb07553959258c585853edfbb291c.zip
ARMv7-A: no exit() calls
Also, switch integrity check over to the correct magic number, and remove duplicate v4/v5 #define. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src/target/armv7a.c')
-rw-r--r--src/target/armv7a.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/target/armv7a.c b/src/target/armv7a.c
index 8b163360..fdaca318 100644
--- a/src/target/armv7a.c
+++ b/src/target/armv7a.c
@@ -187,10 +187,10 @@ int armv7a_arch_state(struct target *target)
struct armv7a_common *armv7a = target_to_armv7a(target);
struct armv4_5_common_s *armv4_5 = &armv7a->armv4_5_common;
- if (armv4_5->common_magic != ARMV4_5_COMMON_MAGIC)
+ if (armv7a->common_magic != ARMV7_COMMON_MAGIC)
{
- LOG_ERROR("BUG: called for a non-ARMv4/5 target");
- exit(-1);
+ LOG_ERROR("BUG: called for a non-ARMv7A target");
+ return ERROR_INVALID_ARGUMENTS;
}
LOG_USER("target halted in %s state due to %s, current mode: %s\n"