xscale_trace_t -> struct xscale_trace

Remove misleading typedef and redundant suffix from struct xscale_trace.
__archive__
Zachary T Welch 2009-11-13 09:11:22 -08:00
parent e76d085603
commit 1e51cf049c
1 changed files with 3 additions and 3 deletions

View File

@ -66,7 +66,7 @@ struct xscale_trace_data
struct xscale_trace_data *next; struct xscale_trace_data *next;
}; };
typedef struct xscale_trace_s struct xscale_trace
{ {
trace_status_t capture_status; /* current state of capture run */ trace_status_t capture_status; /* current state of capture run */
struct image_s *image; /* source for target opcodes */ struct image_s *image; /* source for target opcodes */
@ -76,7 +76,7 @@ typedef struct xscale_trace_s
int pc_ok; int pc_ok;
uint32_t current_pc; uint32_t current_pc;
armv4_5_state_t core_state; /* current core state (ARM, Thumb, Jazelle) */ armv4_5_state_t core_state; /* current core state (ARM, Thumb, Jazelle) */
} xscale_trace_t; };
struct xscale_common struct xscale_common
{ {
@ -120,7 +120,7 @@ struct xscale_common
uint8_t vector_catch; uint8_t vector_catch;
xscale_trace_t trace; struct xscale_trace trace;
int arch_debug_reason; int arch_debug_reason;