summaryrefslogtreecommitdiff
path: root/src/target/mips_m4k.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-13 09:15:32 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-13 11:58:13 -0800
commit53c05c8b1d5718b2acf5dbe0eb517dd427340041 (patch)
tree4ec75a7d039d0f8bb07cde0251452ae81fb3cce8 /src/target/mips_m4k.h
parent1e51cf049cfed3bc42a748d848210f8e4b472282 (diff)
downloadopenocd+libswd-53c05c8b1d5718b2acf5dbe0eb517dd427340041.tar.gz
openocd+libswd-53c05c8b1d5718b2acf5dbe0eb517dd427340041.tar.bz2
openocd+libswd-53c05c8b1d5718b2acf5dbe0eb517dd427340041.tar.xz
openocd+libswd-53c05c8b1d5718b2acf5dbe0eb517dd427340041.zip
breakpoint_t -> struct breakpoint
Remove misleading typedef and redundant suffix from struct breakpoint.
Diffstat (limited to 'src/target/mips_m4k.h')
-rw-r--r--src/target/mips_m4k.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/target/mips_m4k.h b/src/target/mips_m4k.h
index 6044974a..b13dee2a 100644
--- a/src/target/mips_m4k.h
+++ b/src/target/mips_m4k.h
@@ -39,10 +39,10 @@ int mips_m4k_bulk_write_memory(struct target_s *target,
uint32_t address, uint32_t count, uint8_t *buffer);
void mips_m4k_enable_breakpoints(struct target_s *target);
-int mips_m4k_set_breakpoint(struct target_s *target, breakpoint_t *bp);
-int mips_m4k_unset_breakpoint(struct target_s *target, breakpoint_t *bp);
-int mips_m4k_add_breakpoint(struct target_s *target, breakpoint_t *bp);
-int mips_m4k_remove_breakpoint(struct target_s *target, breakpoint_t *bp);
+int mips_m4k_set_breakpoint(struct target_s *target, struct breakpoint *bp);
+int mips_m4k_unset_breakpoint(struct target_s *target, struct breakpoint *bp);
+int mips_m4k_add_breakpoint(struct target_s *target, struct breakpoint *bp);
+int mips_m4k_remove_breakpoint(struct target_s *target, struct breakpoint *bp);
void mips_m4k_enable_watchpoints(struct target_s *target);
int mips_m4k_set_watchpoint(struct target_s *target, struct watchpoint *wp);