breakpoint_t -> struct breakpoint

Remove misleading typedef and redundant suffix from struct breakpoint.
This commit is contained in:
Zachary T Welch
2009-11-13 09:15:32 -08:00
parent 1e51cf049c
commit 53c05c8b1d
13 changed files with 76 additions and 76 deletions

View File

@@ -833,7 +833,7 @@ static int arm11_resume(struct target_s *target, int current,
{
/* check if one matches PC and step over it if necessary */
breakpoint_t * bp;
struct breakpoint * bp;
for (bp = target->breakpoints; bp; bp = bp->next)
{
@@ -1552,7 +1552,7 @@ static int arm11_checksum_memory(struct target_s *target,
* rw: 0 = write, 1 = read, 2 = access
*/
static int arm11_add_breakpoint(struct target_s *target,
breakpoint_t *breakpoint)
struct breakpoint *breakpoint)
{
FNC_INFO;
@@ -1584,7 +1584,7 @@ static int arm11_add_breakpoint(struct target_s *target,
}
static int arm11_remove_breakpoint(struct target_s *target,
breakpoint_t *breakpoint)
struct breakpoint *breakpoint)
{
FNC_INFO;