summaryrefslogtreecommitdiff
path: root/src/target/armv7m.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 08:41:43 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:10 -0800
commit5e43565ab543b1ceff4cc8030434a54ac28dd875 (patch)
tree9810c28fdc2ab66129a5462c14f6de8a782b70f2 /src/target/armv7m.h
parente8a6e3b2f4e1b0f3cccfa01c486fbdd952842801 (diff)
downloadopenocd+libswd-5e43565ab543b1ceff4cc8030434a54ac28dd875.tar.gz
openocd+libswd-5e43565ab543b1ceff4cc8030434a54ac28dd875.tar.bz2
openocd+libswd-5e43565ab543b1ceff4cc8030434a54ac28dd875.tar.xz
openocd+libswd-5e43565ab543b1ceff4cc8030434a54ac28dd875.zip
armv7m_algorithm_t -> struct armv7m_algorithm
Remove misleading typedef and redundant suffix from struct armv7m_algorithm.
Diffstat (limited to 'src/target/armv7m.h')
-rw-r--r--src/target/armv7m.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/armv7m.h b/src/target/armv7m.h
index 602bf314..6e857ee4 100644
--- a/src/target/armv7m.h
+++ b/src/target/armv7m.h
@@ -119,12 +119,12 @@ target_to_armv7m(struct target_s *target)
return target->arch_info;
}
-typedef struct armv7m_algorithm_s
+struct armv7m_algorithm
{
int common_magic;
enum armv7m_mode core_mode;
-} armv7m_algorithm_t;
+};
typedef struct armv7m_core_reg_s
{