]> git.sur5r.net Git - openocd/blobdiff - src/target/breakpoints.c
whitespace fixes
[openocd] / src / target / breakpoints.c
index c73d1f9aa4b7f0192475b2051a6436cd7695adf4..6320d2ea83bbecb6a788e4662ac19062160d3d13 100644 (file)
 
 #include "breakpoints.h"
 
-char *breakpoint_type_strings[] =
+static char *breakpoint_type_strings[] =
 {
        "hardware",
        "software"
 };
 
-char *watchpoint_rw_strings[] =
+static char *watchpoint_rw_strings[] =
 {
        "read",
        "write",
@@ -238,8 +238,6 @@ static void watchpoint_free(target_t *target, watchpoint_t *watchpoint_remove)
        free(watchpoint);
 }
 
-
-
 void watchpoint_remove(target_t *target, u32 address)
 {
        watchpoint_t *watchpoint = target->watchpoints;
@@ -263,7 +261,6 @@ void watchpoint_remove(target_t *target, u32 address)
        }
 }
 
-
 void watchpoint_clear_target(target_t *target)
 {
        watchpoint_t *watchpoint;