diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 08:35:54 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 11:58:08 -0800 |
commit | 52bc6cad87c2ae0558ec5b3539fecad15b75b008 (patch) | |
tree | 0db8f9cf7019dec35e060e9740d11b836f020da3 /src | |
parent | ea49f2e3ff55268faeff6e1603d86025873320ed (diff) | |
download | openocd_libswd-52bc6cad87c2ae0558ec5b3539fecad15b75b008.tar.gz openocd_libswd-52bc6cad87c2ae0558ec5b3539fecad15b75b008.tar.bz2 openocd_libswd-52bc6cad87c2ae0558ec5b3539fecad15b75b008.tar.xz openocd_libswd-52bc6cad87c2ae0558ec5b3539fecad15b75b008.zip |
arm11_register_history_t -> struct arm11_register_history
Remove misleading typedef and redundant suffix from struct arm11_register_history.
Diffstat (limited to 'src')
-rw-r--r-- | src/target/arm11.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/target/arm11.h b/src/target/arm11.h index 100fc26a..4bbc4561 100644 --- a/src/target/arm11.h +++ b/src/target/arm11.h @@ -64,11 +64,11 @@ do { \ } while (0) -typedef struct arm11_register_history_s +struct arm11_register_history { uint32_t value; uint8_t valid; -}arm11_register_history_t; +}; enum arm11_debug_version { @@ -109,7 +109,7 @@ typedef struct arm11_common_s /*@}*/ - arm11_register_history_t + struct arm11_register_history reg_history[ARM11_REGCACHE_COUNT]; /**< register state before last resume */ size_t free_brps; /**< keep track of breakpoints allocated by arm11_add_breakpoint() */ |