xscale_trace_entry_t -> struct xscale_trace_entry

Remove misleading typedef and redundant suffix from struct xscale_trace_entry.
This commit is contained in:
Zachary T Welch
2009-11-13 09:10:47 -08:00
parent abd7b40408
commit e76d085603
2 changed files with 4 additions and 4 deletions

View File

@@ -50,15 +50,15 @@ enum xscale_trace_entry_type
XSCALE_TRACE_ADDRESS = 0x1,
};
typedef struct xscale_trace_entry_s
struct xscale_trace_entry
{
uint8_t data;
enum xscale_trace_entry_type type;
} xscale_trace_entry_t;
};
struct xscale_trace_data
{
xscale_trace_entry_t *entries;
struct xscale_trace_entry *entries;
int depth;
uint32_t chkpt0;
uint32_t chkpt1;