summaryrefslogtreecommitdiff
path: root/src/target/armv4_5.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 08:41:07 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:10 -0800
commit15e8e4530866454c18c5d91ad9e867f339c2e82b (patch)
tree71e6415b9717a3e93d219f06d02f81102e112c2b /src/target/armv4_5.h
parent056fcdb540f0ab9a404f3b5de72fd707eb146603 (diff)
downloadopenocd+libswd-15e8e4530866454c18c5d91ad9e867f339c2e82b.tar.gz
openocd+libswd-15e8e4530866454c18c5d91ad9e867f339c2e82b.tar.bz2
openocd+libswd-15e8e4530866454c18c5d91ad9e867f339c2e82b.tar.xz
openocd+libswd-15e8e4530866454c18c5d91ad9e867f339c2e82b.zip
armv4_5_algorithm_t -> struct armv4_5_algorithm
Remove misleading typedef and redundant suffix from struct armv4_5_algorithm.
Diffstat (limited to 'src/target/armv4_5.h')
-rw-r--r--src/target/armv4_5.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/armv4_5.h b/src/target/armv4_5.h
index c6686f1e..22069d1b 100644
--- a/src/target/armv4_5.h
+++ b/src/target/armv4_5.h
@@ -119,13 +119,13 @@ static inline bool is_arm(struct arm *arm)
return arm && arm->common_magic == ARMV4_5_COMMON_MAGIC;
}
-typedef struct armv4_5_algorithm_s
+struct armv4_5_algorithm
{
int common_magic;
enum armv4_5_mode core_mode;
enum armv4_5_state core_state;
-} armv4_5_algorithm_t;
+};
typedef struct armv4_5_core_reg_s
{