summaryrefslogtreecommitdiff
path: root/src/target/target.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 09:09:40 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:13 -0800
commitabd7b404086d3c63b163a5ffa786f3538714b7d9 (patch)
tree1a2fdcf13d0f15f4ec00a938259871c01ca0d4f9 /src/target/target.c
parent55edfdf2ab6c5d1d6cd4c1c97a79cbb1d39b1f22 (diff)
downloadopenocd+libswd-abd7b404086d3c63b163a5ffa786f3538714b7d9.tar.gz
openocd+libswd-abd7b404086d3c63b163a5ffa786f3538714b7d9.tar.bz2
openocd+libswd-abd7b404086d3c63b163a5ffa786f3538714b7d9.tar.xz
openocd+libswd-abd7b404086d3c63b163a5ffa786f3538714b7d9.zip
target_event_action_t -> struct target_event_action
Remove misleading typedef and redundant suffix from struct target_event_action.
Diffstat (limited to 'src/target/target.c')
-rw-r--r--src/target/target.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/target/target.c b/src/target/target.c
index fef7c299..e46dec9c 100644
--- a/src/target/target.c
+++ b/src/target/target.c
@@ -3495,7 +3495,7 @@ void target_all_handle_event(enum target_event e)
*/
void target_handle_event(target_t *target, enum target_event e)
{
- target_event_action_t *teap;
+ struct target_event_action *teap;
for (teap = target->event_action; teap != NULL; teap = teap->next) {
if (teap->event == e) {
@@ -3613,7 +3613,7 @@ static int target_configure(Jim_GetOptInfo *goi, target_t *target)
}
{
- target_event_action_t *teap;
+ struct target_event_action *teap;
teap = target->event_action;
/* replace existing? */
@@ -4183,7 +4183,7 @@ static int tcl_target_func(Jim_Interp *interp, int argc, Jim_Obj *const *argv)
* scripts/programs should use 'name cget -event NAME'
*/
{
- target_event_action_t *teap;
+ struct target_event_action *teap;
teap = target->event_action;
command_print(cmd_ctx, "Event actions for target (%d) %s\n",
target->target_number,