summaryrefslogtreecommitdiff
path: root/src/target/armv7a.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 08:41:32 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:10 -0800
commit5415d07139faeb2541127d5a7bcedef833b79de3 (patch)
tree905b0e4ac17dabc9ec9b1d487b59a7224b3a315b /src/target/armv7a.h
parent248448ee3a5f4f97307f1d5af4ef940529478a34 (diff)
downloadopenocd+libswd-5415d07139faeb2541127d5a7bcedef833b79de3.tar.gz
openocd+libswd-5415d07139faeb2541127d5a7bcedef833b79de3.tar.bz2
openocd+libswd-5415d07139faeb2541127d5a7bcedef833b79de3.tar.xz
openocd+libswd-5415d07139faeb2541127d5a7bcedef833b79de3.zip
armv7a_algorithm_t -> struct armv7a_algorithm
Remove misleading typedef and redundant suffix from struct armv7a_algorithm.
Diffstat (limited to 'src/target/armv7a.h')
-rw-r--r--src/target/armv7a.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/armv7a.h b/src/target/armv7a.h
index e5615bb5..5a77befc 100644
--- a/src/target/armv7a.h
+++ b/src/target/armv7a.h
@@ -133,13 +133,13 @@ target_to_armv7a(struct target_s *target)
armv4_5_common);
}
-typedef struct armv7a_algorithm_s
+struct armv7a_algorithm
{
int common_magic;
enum armv7a_mode core_mode;
enum armv7a_state core_state;
-} armv7a_algorithm_t;
+};
typedef struct armv7a_core_reg_s
{