summaryrefslogtreecommitdiff
path: root/src/target/feroceon.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 08:40:15 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:09 -0800
commit5f68f45186c1fe73e1c83bd5847edd6bfaf06b34 (patch)
tree3b1e684bcc916190af9204b04d2caaf8ded44ec2 /src/target/feroceon.c
parent16487e70856a72f9cbe174c7d7d2fb6a1f258100 (diff)
downloadopenocd+libswd-5f68f45186c1fe73e1c83bd5847edd6bfaf06b34.tar.gz
openocd+libswd-5f68f45186c1fe73e1c83bd5847edd6bfaf06b34.tar.bz2
openocd+libswd-5f68f45186c1fe73e1c83bd5847edd6bfaf06b34.tar.xz
openocd+libswd-5f68f45186c1fe73e1c83bd5847edd6bfaf06b34.zip
arm926ejs_common_t -> struct arm926ejs_common
Remove misleading typedef and redundant suffix from struct arm926ejs_common.
Diffstat (limited to 'src/target/feroceon.c')
-rw-r--r--src/target/feroceon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/feroceon.c b/src/target/feroceon.c
index d203293f..3026ed22 100644
--- a/src/target/feroceon.c
+++ b/src/target/feroceon.c
@@ -618,7 +618,7 @@ void feroceon_common_setup(struct target_s *target)
int feroceon_target_create(struct target_s *target, Jim_Interp *interp)
{
- arm926ejs_common_t *arm926ejs = calloc(1,sizeof(arm926ejs_common_t));
+ struct arm926ejs_common *arm926ejs = calloc(1,sizeof(struct arm926ejs_common));
arm926ejs_init_arch_info(target, arm926ejs, target->tap);
feroceon_common_setup(target);