summaryrefslogtreecommitdiff
path: root/src/target/arm720t.c
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2009-11-22 10:19:58 -0800
committerDavid Brownell <dbrownell@users.sourceforge.net>2009-11-22 10:27:29 -0800
commitab5ac33fd462c37e4cf5a6bc1fe5fd0631e44469 (patch)
tree84c1fcc02b2030c7b60fed0c2b39399dcc07c14f /src/target/arm720t.c
parent5416c525d4e232161572fbbd1b200a7f3a7c2819 (diff)
downloadopenocd+libswd-ab5ac33fd462c37e4cf5a6bc1fe5fd0631e44469.tar.gz
openocd+libswd-ab5ac33fd462c37e4cf5a6bc1fe5fd0631e44469.tar.bz2
openocd+libswd-ab5ac33fd462c37e4cf5a6bc1fe5fd0631e44469.tar.xz
openocd+libswd-ab5ac33fd462c37e4cf5a6bc1fe5fd0631e44469.zip
ARM: remove 'armv4_5_common_s' migration #define
Finish migrating from the old symbol to the new one. Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'src/target/arm720t.c')
-rw-r--r--src/target/arm720t.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/arm720t.c b/src/target/arm720t.c
index 3aa77ea4..f9388ab6 100644
--- a/src/target/arm720t.c
+++ b/src/target/arm720t.c
@@ -225,7 +225,7 @@ static int arm720t_verify_pointer(struct command_context *cmd_ctx,
static int arm720t_arch_state(struct target *target)
{
struct arm720t_common *arm720t = target_to_arm720(target);
- struct armv4_5_common_s *armv4_5;
+ struct arm *armv4_5;
static const char *state[] =
{
@@ -307,7 +307,7 @@ static int arm720t_soft_reset_halt(struct target *target)
struct arm720t_common *arm720t = target_to_arm720(target);
struct reg *dbg_stat = &arm720t->arm7_9_common
.eice_cache->reg_list[EICE_DBG_STAT];
- struct armv4_5_common_s *armv4_5 = &arm720t->arm7_9_common
+ struct arm *armv4_5 = &arm720t->arm7_9_common
.armv4_5_common;
if ((retval = target_halt(target)) != ERROR_OK)