From 55edfdf2ab6c5d1d6cd4c1c97a79cbb1d39b1f22 Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 09:06:49 -0800 Subject: arm_instruction_t -> struct arm_instruction Remove misleading typedef and redundant suffix from struct arm_instruction. --- src/target/etm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/target/etm.c') diff --git a/src/target/etm.c b/src/target/etm.c index 118fe12d..a5fe2826 100644 --- a/src/target/etm.c +++ b/src/target/etm.c @@ -636,7 +636,7 @@ static struct etm_capture_driver *etm_capture_drivers[] = NULL }; -static int etm_read_instruction(etm_context_t *ctx, arm_instruction_t *instruction) +static int etm_read_instruction(etm_context_t *ctx, struct arm_instruction *instruction) { int i; int section = -1; @@ -887,7 +887,7 @@ static int etmv1_data(etm_context_t *ctx, int size, uint32_t *data) static int etmv1_analyze_trace(etm_context_t *ctx, struct command_context_s *cmd_ctx) { int retval; - arm_instruction_t instruction; + struct arm_instruction instruction; /* read the trace data if it wasn't read already */ if (ctx->trace_depth == 0) -- cgit v1.2.3