summaryrefslogtreecommitdiff
path: root/src/target/mips32.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 08:44:08 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:12 -0800
commit74d09617b927ed7011098d5a65087dee1ef1e87a (patch)
treeb73fe576548030923a72944b8f8a9e31bb9a342c /src/target/mips32.h
parentde3fb2f3bce2de5be44223204ce368216ed85b0f (diff)
downloadopenocd+libswd-74d09617b927ed7011098d5a65087dee1ef1e87a.tar.gz
openocd+libswd-74d09617b927ed7011098d5a65087dee1ef1e87a.tar.bz2
openocd+libswd-74d09617b927ed7011098d5a65087dee1ef1e87a.tar.xz
openocd+libswd-74d09617b927ed7011098d5a65087dee1ef1e87a.zip
reg_cache_t -> struct reg_cache
Remove misleading typedef and redundant suffix from struct reg_cache.
Diffstat (limited to 'src/target/mips32.h')
-rw-r--r--src/target/mips32.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/mips32.h b/src/target/mips32.h
index 39f00be4..7cecb754 100644
--- a/src/target/mips32.h
+++ b/src/target/mips32.h
@@ -49,7 +49,7 @@ struct mips32_common
{
uint32_t common_magic;
void *arch_info;
- reg_cache_t *core_cache;
+ struct reg_cache *core_cache;
struct mips_ejtag ejtag_info;
uint32_t core_regs[MIPS32NUMCOREREGS];
@@ -132,7 +132,7 @@ int mips32_init_arch_info(target_t *target,
int mips32_restore_context(target_t *target);
int mips32_save_context(target_t *target);
-reg_cache_t *mips32_build_reg_cache(target_t *target);
+struct reg_cache *mips32_build_reg_cache(target_t *target);
int mips32_run_algorithm(struct target_s *target,
int num_mem_params, struct mem_param *mem_params,