summaryrefslogtreecommitdiff
path: root/src/target/mips_m4k.c
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 08:43:26 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:11 -0800
commit1bd7a78d92e06fcd403c915f0e9d3ecdbcc8305d (patch)
tree03dd0fbd5a588a13e47e5a33909064abc75cf803 /src/target/mips_m4k.c
parentef36a7fb3b87bddc14ad9c5d98fde1d041a0de2d (diff)
downloadopenocd+libswd-1bd7a78d92e06fcd403c915f0e9d3ecdbcc8305d.tar.gz
openocd+libswd-1bd7a78d92e06fcd403c915f0e9d3ecdbcc8305d.tar.bz2
openocd+libswd-1bd7a78d92e06fcd403c915f0e9d3ecdbcc8305d.tar.xz
openocd+libswd-1bd7a78d92e06fcd403c915f0e9d3ecdbcc8305d.zip
mips32_comparator_t -> struct mips32_comparator
Remove misleading typedef and redundant suffix from struct mips32_comparator.
Diffstat (limited to 'src/target/mips_m4k.c')
-rw-r--r--src/target/mips_m4k.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/target/mips_m4k.c b/src/target/mips_m4k.c
index 0fc32ab8..df9ec414 100644
--- a/src/target/mips_m4k.c
+++ b/src/target/mips_m4k.c
@@ -494,7 +494,7 @@ void mips_m4k_enable_breakpoints(struct target_s *target)
int mips_m4k_set_breakpoint(struct target_s *target, breakpoint_t *breakpoint)
{
mips32_common_t *mips32 = target->arch_info;
- mips32_comparator_t * comparator_list = mips32->inst_break_list;
+ struct mips32_comparator * comparator_list = mips32->inst_break_list;
int retval;
if (breakpoint->set)
@@ -586,7 +586,7 @@ int mips_m4k_unset_breakpoint(struct target_s *target, breakpoint_t *breakpoint)
{
/* get pointers to arch-specific information */
mips32_common_t *mips32 = target->arch_info;
- mips32_comparator_t * comparator_list = mips32->inst_break_list;
+ struct mips32_comparator * comparator_list = mips32->inst_break_list;
int retval;
if (!breakpoint->set)
@@ -702,7 +702,7 @@ int mips_m4k_remove_breakpoint(struct target_s *target, breakpoint_t *breakpoint
int mips_m4k_set_watchpoint(struct target_s *target, struct watchpoint *watchpoint)
{
mips32_common_t *mips32 = target->arch_info;
- mips32_comparator_t * comparator_list = mips32->data_break_list;
+ struct mips32_comparator * comparator_list = mips32->data_break_list;
int wp_num = 0;
/*
* watchpoint enabled, ignore all byte lanes in value register
@@ -771,7 +771,7 @@ int mips_m4k_unset_watchpoint(struct target_s *target, struct watchpoint *watchp
{
/* get pointers to arch-specific information */
mips32_common_t *mips32 = target->arch_info;
- mips32_comparator_t * comparator_list = mips32->data_break_list;
+ struct mips32_comparator * comparator_list = mips32->data_break_list;
if (!watchpoint->set)
{