diff options
author | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 08:44:08 -0800 |
---|---|---|
committer | Zachary T Welch <zw@superlucidity.net> | 2009-11-13 11:58:12 -0800 |
commit | 74d09617b927ed7011098d5a65087dee1ef1e87a (patch) | |
tree | b73fe576548030923a72944b8f8a9e31bb9a342c /src/target/xscale.h | |
parent | de3fb2f3bce2de5be44223204ce368216ed85b0f (diff) | |
download | riscv-openocd-74d09617b927ed7011098d5a65087dee1ef1e87a.zip riscv-openocd-74d09617b927ed7011098d5a65087dee1ef1e87a.tar.gz riscv-openocd-74d09617b927ed7011098d5a65087dee1ef1e87a.tar.bz2 |
reg_cache_t -> struct reg_cache
Remove misleading typedef and redundant suffix from struct reg_cache.
Diffstat (limited to 'src/target/xscale.h')
-rw-r--r-- | src/target/xscale.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/xscale.h b/src/target/xscale.h index dd7b034..d5de8dc 100644 --- a/src/target/xscale.h +++ b/src/target/xscale.h @@ -86,7 +86,7 @@ typedef struct xscale_common_s int common_magic; /* XScale registers (CP15, DBG) */ - reg_cache_t *reg_cache; + struct reg_cache *reg_cache; /* current state of the debug handler */ uint32_t handler_address; |