From 2914be1a67111d0fec5be1244e4e1ab219e211b9 Mon Sep 17 00:00:00 2001 From: dragonmux Date: Tue, 31 May 2022 22:03:21 -0400 Subject: [PATCH] cortexa: Fix the new Watchpoint support causing a no-build --- src/target/cortexa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/target/cortexa.c b/src/target/cortexa.c index c4be360..5477263 100644 --- a/src/target/cortexa.c +++ b/src/target/cortexa.c @@ -822,7 +822,7 @@ static int cortexa_breakwatch_set(target *t, struct breakwatch *bw) apb_write(t, DBGWCR(i), wcr); apb_write(t, DBGWVR(i), bw->addr & ~3); - DEBUG("Watchpoint set WCR = 0x%08x, WVR = %08x\n", + DEBUG_INFO("Watchpoint set WCR = 0x%08x, WVR = %08x\n", apb_read(t, DBGWCR(i)), apb_read(t, DBGWVR(i))); }