diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 08:41:07 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 11:58:10 -0800 |
commit | 15e8e4530866454c18c5d91ad9e867f339c2e82b (patch) | |
tree | 71e6415b9717a3e93d219f06d02f81102e112c2b /src/target/armv4_5.h | |
parent | 056fcdb540f0ab9a404f3b5de72fd707eb146603 (diff) | |
download | riscv-openocd-15e8e4530866454c18c5d91ad9e867f339c2e82b.zip riscv-openocd-15e8e4530866454c18c5d91ad9e867f339c2e82b.tar.gz riscv-openocd-15e8e4530866454c18c5d91ad9e867f339c2e82b.tar.bz2 |
armv4_5_algorithm_t -> struct armv4_5_algorithm
Remove misleading typedef and redundant suffix from struct armv4_5_algorithm.
Diffstat (limited to 'src/target/armv4_5.h')
-rw-r--r-- | src/target/armv4_5.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/armv4_5.h b/src/target/armv4_5.h index c6686f1..22069d1 100644 --- a/src/target/armv4_5.h +++ b/src/target/armv4_5.h @@ -119,13 +119,13 @@ static inline bool is_arm(struct arm *arm) return arm && arm->common_magic == ARMV4_5_COMMON_MAGIC; } -typedef struct armv4_5_algorithm_s +struct armv4_5_algorithm { int common_magic; enum armv4_5_mode core_mode; enum armv4_5_state core_state; -} armv4_5_algorithm_t; +}; typedef struct armv4_5_core_reg_s { |