summaryrefslogtreecommitdiff
path: root/src/target/xscale.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 09:11:22 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:13 -0800
commit1e51cf049cfed3bc42a748d848210f8e4b472282 (patch)
tree48260bf2859dddc80641de0a0dbf4fbdcd3904b2 /src/target/xscale.h
parente76d085603c36efddd9b38cc7383f86ee399177c (diff)
downloadopenocd+libswd-1e51cf049cfed3bc42a748d848210f8e4b472282.tar.gz
openocd+libswd-1e51cf049cfed3bc42a748d848210f8e4b472282.tar.bz2
openocd+libswd-1e51cf049cfed3bc42a748d848210f8e4b472282.tar.xz
openocd+libswd-1e51cf049cfed3bc42a748d848210f8e4b472282.zip
xscale_trace_t -> struct xscale_trace
Remove misleading typedef and redundant suffix from struct xscale_trace.
Diffstat (limited to 'src/target/xscale.h')
-rw-r--r--src/target/xscale.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/target/xscale.h b/src/target/xscale.h
index 31ab281f..936782cf 100644
--- a/src/target/xscale.h
+++ b/src/target/xscale.h
@@ -66,7 +66,7 @@ struct xscale_trace_data
struct xscale_trace_data *next;
};
-typedef struct xscale_trace_s
+struct xscale_trace
{
trace_status_t capture_status; /* current state of capture run */
struct image_s *image; /* source for target opcodes */
@@ -76,7 +76,7 @@ typedef struct xscale_trace_s
int pc_ok;
uint32_t current_pc;
armv4_5_state_t core_state; /* current core state (ARM, Thumb, Jazelle) */
-} xscale_trace_t;
+};
struct xscale_common
{
@@ -120,7 +120,7 @@ struct xscale_common
uint8_t vector_catch;
- xscale_trace_t trace;
+ struct xscale_trace trace;
int arch_debug_reason;