summaryrefslogtreecommitdiff
path: root/src/target/mips32.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 08:39:42 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:09 -0800
commitb1de5eb9a074b362e953e857c42cac9a9b18b2a3 (patch)
tree96d3ffb07523e97824d4b5605999ed43f87f1cc5 /src/target/mips32.c
parent6c965a3da9cd6f5b2cf1b177d38723356c83d923 (diff)
downloadopenocd+libswd-b1de5eb9a074b362e953e857c42cac9a9b18b2a3.tar.gz
openocd+libswd-b1de5eb9a074b362e953e857c42cac9a9b18b2a3.tar.bz2
openocd+libswd-b1de5eb9a074b362e953e857c42cac9a9b18b2a3.tar.xz
openocd+libswd-b1de5eb9a074b362e953e857c42cac9a9b18b2a3.zip
reg_param_t -> struct reg_param
Remove misleading typedef and redundant suffix from struct reg_param.
Diffstat (limited to 'src/target/mips32.c')
-rw-r--r--src/target/mips32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/target/mips32.c b/src/target/mips32.c
index 18bea79a..055d2788 100644
--- a/src/target/mips32.c
+++ b/src/target/mips32.c
@@ -336,7 +336,7 @@ int mips32_register_commands(struct command_context_s *cmd_ctx)
return ERROR_OK;
}
-int mips32_run_algorithm(struct target_s *target, int num_mem_params, struct mem_param *mem_params, int num_reg_params, reg_param_t *reg_params, uint32_t entry_point, uint32_t exit_point, int timeout_ms, void *arch_info)
+int mips32_run_algorithm(struct target_s *target, int num_mem_params, struct mem_param *mem_params, int num_reg_params, struct reg_param *reg_params, uint32_t entry_point, uint32_t exit_point, int timeout_ms, void *arch_info)
{
/*TODO*/
return ERROR_OK;