From e76d085603c36efddd9b38cc7383f86ee399177c Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 09:10:47 -0800 Subject: [PATCH] xscale_trace_entry_t -> struct xscale_trace_entry Remove misleading typedef and redundant suffix from struct xscale_trace_entry. --- src/target/xscale.c | 2 +- src/target/xscale.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/target/xscale.c b/src/target/xscale.c index 424259bdf0..4439b0e2ba 100644 --- a/src/target/xscale.c +++ b/src/target/xscale.c @@ -2534,7 +2534,7 @@ static int xscale_read_trace(target_t *target) (*trace_data_p)->chkpt0 = trace_buffer[256]; (*trace_data_p)->chkpt1 = trace_buffer[257]; (*trace_data_p)->last_instruction = buf_get_u32(armv4_5->core_cache->reg_list[15].value, 0, 32); - (*trace_data_p)->entries = malloc(sizeof(xscale_trace_entry_t) * (256 - j)); + (*trace_data_p)->entries = malloc(sizeof(struct xscale_trace_entry) * (256 - j)); (*trace_data_p)->depth = 256 - j; for (i = j; i < 256; i++) diff --git a/src/target/xscale.h b/src/target/xscale.h index 6fb0bf5182..31ab281f5f 100644 --- a/src/target/xscale.h +++ b/src/target/xscale.h @@ -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; -- 2.30.2