summaryrefslogtreecommitdiff
path: root/src/target/arm11.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 08:39:54 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:09 -0800
commitf3b3752a9eebae273da6580c182e9d1486e41ed9 (patch)
tree0dfb9cb51388db33cc839fbd35c8efb09fc2d3ab /src/target/arm11.c
parent3bcd9ad9d017649038be26fad5440e507db2118d (diff)
downloadopenocd+libswd-f3b3752a9eebae273da6580c182e9d1486e41ed9.tar.gz
openocd+libswd-f3b3752a9eebae273da6580c182e9d1486e41ed9.tar.bz2
openocd+libswd-f3b3752a9eebae273da6580c182e9d1486e41ed9.tar.xz
openocd+libswd-f3b3752a9eebae273da6580c182e9d1486e41ed9.zip
arm11_sc7_action_t -> struct arm11_sc7_action
Remove misleading typedef and redundant suffix from struct arm11_sc7_action.
Diffstat (limited to 'src/target/arm11.c')
-rw-r--r--src/target/arm11.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/arm11.c b/src/target/arm11.c
index 47786b81..e5794b8a 100644
--- a/src/target/arm11.c
+++ b/src/target/arm11.c
@@ -851,7 +851,7 @@ static int arm11_resume(struct target_s *target, int current,
for (bp = target->breakpoints; bp; bp = bp->next)
{
- arm11_sc7_action_t brp[2];
+ struct arm11_sc7_action brp[2];
brp[0].write = 1;
brp[0].address = ARM11_SC7_BVR0 + brp_num;
@@ -1074,7 +1074,7 @@ static int arm11_step(struct target_s *target, int current,
/* Set up breakpoint for stepping */
- arm11_sc7_action_t brp[2];
+ struct arm11_sc7_action brp[2];
brp[0].write = 1;
brp[0].address = ARM11_SC7_BVR0;