aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/target/dsp563xx.c4
-rw-r--r--src/target/dsp563xx.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/target/dsp563xx.c b/src/target/dsp563xx.c
index 7305733..5ad52b5 100644
--- a/src/target/dsp563xx.c
+++ b/src/target/dsp563xx.c
@@ -913,7 +913,7 @@ static int dsp563xx_init_target(struct command_context *cmd_ctx, struct target *
dsp563xx_build_reg_cache(target);
struct dsp563xx_common *dsp563xx = target_to_dsp563xx(target);
- dsp563xx->hardware_breakpoints_cleared = 0;
+ dsp563xx->hardware_breakpoints_cleared = false;
dsp563xx->hardware_breakpoint[0].used = BPU_NONE;
return ERROR_OK;
@@ -1096,7 +1096,7 @@ static int dsp563xx_poll(struct target *target)
if (err != ERROR_OK)
return err;
- dsp563xx->hardware_breakpoints_cleared = 1;
+ dsp563xx->hardware_breakpoints_cleared = true;
}
return ERROR_OK;
diff --git a/src/target/dsp563xx.h b/src/target/dsp563xx.h
index 18428b8..5c3e1d3 100644
--- a/src/target/dsp563xx.h
+++ b/src/target/dsp563xx.h
@@ -52,7 +52,7 @@ struct dsp563xx_common {
struct hardware_breakpoint hardware_breakpoint[1];
/*Were the hardware breakpoints cleared on startup?*/
- int hardware_breakpoints_cleared;
+ bool hardware_breakpoints_cleared;
};
struct dsp563xx_core_reg {