summaryrefslogtreecommitdiff
path: root/src/target/target.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 09:26:19 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:13 -0800
commit4952eadd8f04ca3755c30013abc3ea85e35d8654 (patch)
tree70987539f0a0e9b3cadc6168e4944ede228bcf7b /src/target/target.h
parentd90063ffc54ea042c0ff37e6cec1e95848bf1e26 (diff)
downloadopenocd+libswd-4952eadd8f04ca3755c30013abc3ea85e35d8654.tar.gz
openocd+libswd-4952eadd8f04ca3755c30013abc3ea85e35d8654.tar.bz2
openocd+libswd-4952eadd8f04ca3755c30013abc3ea85e35d8654.tar.xz
openocd+libswd-4952eadd8f04ca3755c30013abc3ea85e35d8654.zip
trace_t -> struct trace
Remove misleading typedef and redundant suffix from struct trace.
Diffstat (limited to 'src/target/target.h')
-rw-r--r--src/target/target.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/target.h b/src/target/target.h
index ef3f6ccd..3eafc18a 100644
--- a/src/target/target.h
+++ b/src/target/target.h
@@ -33,7 +33,7 @@
#include "command.h"
struct reg_s;
-struct trace_s;
+struct trace;
struct command_context_s;
@@ -154,7 +154,7 @@ typedef struct target_s
struct reg_cache *reg_cache; /* the first register cache of the target (core regs) */
struct breakpoint *breakpoints; /* list of breakpoints */
struct watchpoint *watchpoints; /* list of watchpoints */
- struct trace_s *trace_info; /* generic trace information */
+ struct trace *trace_info; /* generic trace information */
struct debug_msg_receiver *dbgmsg;/* list of debug message receivers */
uint32_t dbg_msg_enabled; /* debug message status */
void *arch_info; /* architecture specific information */