]> git.sur5r.net Git - openocd/commitdiff
xscale_trace_t -> struct xscale_trace
authorZachary T Welch <zw@superlucidity.net>
Fri, 13 Nov 2009 17:11:22 +0000 (09:11 -0800)
committerZachary T Welch <zw@superlucidity.net>
Fri, 13 Nov 2009 19:58:13 +0000 (11:58 -0800)
Remove misleading typedef and redundant suffix from struct xscale_trace.

src/target/xscale.h

index 31ab281f5f3483b02d3db77c7d5b0b4a41ff3948..936782cf3705f85cc7e943ab6b8aff25f96f6350 100644 (file)
@@ -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;