diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 09:35:48 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 11:58:13 -0800 |
commit | d0c19e0a9d51211953a363026c662d290542fe85 (patch) | |
tree | c4b0f25cfcaf15185ebf96895d6ec9199f6047c7 /src/target/armv4_5.h | |
parent | 6421c2075c733d18b7fc9daed847c135b98230b7 (diff) | |
download | riscv-openocd-d0c19e0a9d51211953a363026c662d290542fe85.zip riscv-openocd-d0c19e0a9d51211953a363026c662d290542fe85.tar.gz riscv-openocd-d0c19e0a9d51211953a363026c662d290542fe85.tar.bz2 |
etm_context_t -> struct etm_context
Remove misleading typedef and redundant suffix from struct etm_context.
Diffstat (limited to 'src/target/armv4_5.h')
-rw-r--r-- | src/target/armv4_5.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/armv4_5.h b/src/target/armv4_5.h index 8987916..3c65069 100644 --- a/src/target/armv4_5.h +++ b/src/target/armv4_5.h @@ -96,7 +96,7 @@ typedef struct arm bool is_armv4; /** Handle for the Embedded Trace Module, if one is present. */ - struct etm *etm; + struct etm_context *etm; int (*full_context)(struct target_s *target); int (*read_core_reg)(struct target_s *target, |