From dfecfd5fd471708ac15af08b52964e8f8da9f4be Mon Sep 17 00:00:00 2001 From: Zachary T Welch Date: Fri, 13 Nov 2009 09:46:21 -0800 Subject: image_t -> struct image Remove misleading typedef and redundant suffix from struct image. Also removes the typedef from enum image_type, as it is used in image.h only. --- src/target/etm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/target/etm.h') diff --git a/src/target/etm.h b/src/target/etm.h index 3de54eef..531206cc 100644 --- a/src/target/etm.h +++ b/src/target/etm.h @@ -26,7 +26,7 @@ #include "trace.h" #include "arm_jtag.h" -struct image_s; +struct image; /* ETM registers (JTAG protocol) */ enum @@ -165,7 +165,7 @@ struct etm_context etm_portmode_t portmode; /* normal, multiplexed or demultiplexed */ etmv1_tracemode_t tracemode; /* type of info trace contains */ int /*armv4_5_state_t*/ core_state; /* current core state */ - struct image_s *image; /* source for target opcodes */ + struct image *image; /* source for target opcodes */ uint32_t pipe_index; /* current trace cycle */ uint32_t data_index; /* cycle holding next data packet */ bool data_half; /* port half on a 16 bit port */ -- cgit v1.2.3