aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrey Smirnov <andrew.smirnov@gmail.com>2014-06-18 23:41:00 +0200
committerAndreas Fritiofson <andreas.fritiofson@gmail.com>2014-06-28 09:31:10 +0000
commit2268b771428c982846b097fa12913283de6dd78b (patch)
tree0aba2b147e9a960f5ecbb5e1a7c8b43eca64bf8c /src
parentccf4d6d64844410483d2d2513c2c4ed173604649 (diff)
downloadriscv-openocd-2268b771428c982846b097fa12913283de6dd78b.zip
riscv-openocd-2268b771428c982846b097fa12913283de6dd78b.tar.gz
riscv-openocd-2268b771428c982846b097fa12913283de6dd78b.tar.bz2
adi_v5_cmsis_dap.c: Simplify debugging output
Name of the function is already a part of the LOG_DEBUG macro, so there's no need to include it in the string itself. Change-Id: I18c3d5b746e9106d55104e490ccf5bc5e85cc380 Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> Signed-off-by: Andreas Fritiofson <andreas.fritiofson@gmail.com> Reviewed-on: http://openocd.zylin.com/2138 Tested-by: jenkins
Diffstat (limited to 'src')
-rw-r--r--src/target/adi_v5_cmsis_dap.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/target/adi_v5_cmsis_dap.c b/src/target/adi_v5_cmsis_dap.c
index 9b59146..9028c9d 100644
--- a/src/target/adi_v5_cmsis_dap.c
+++ b/src/target/adi_v5_cmsis_dap.c
@@ -56,7 +56,7 @@ extern struct jtag_interface *jtag_interface;
static int cmsis_dap_clear_sticky_errors(struct adiv5_dap *dap)
{
- LOG_DEBUG("CMSIS-ADI: %s", __func__);
+ LOG_DEBUG(" ");
const struct swd_driver *swd = jtag_interface->swd;
assert(swd);
@@ -67,7 +67,7 @@ static int cmsis_dap_clear_sticky_errors(struct adiv5_dap *dap)
static int cmsis_dap_queue_ap_abort(struct adiv5_dap *dap, uint8_t *ack)
{
- LOG_DEBUG("CMSIS-ADI: %s", __func__);
+ LOG_DEBUG(" ");
const struct swd_driver *swd = jtag_interface->swd;
assert(swd);
@@ -78,7 +78,7 @@ static int cmsis_dap_queue_ap_abort(struct adiv5_dap *dap, uint8_t *ack)
static int cmsis_dap_queue_dp_read(struct adiv5_dap *dap, unsigned reg, uint32_t *data)
{
- LOG_DEBUG("CMSIS-ADI: cmsis_dap_queue_dp_read %d", reg);
+ LOG_DEBUG("reg = %d", reg);
int retval = jtag_interface->swd->read_reg(
(CMSIS_CMD_DP | CMSIS_CMD_READ | CMSIS_CMD_A32(reg)), data);
@@ -91,7 +91,7 @@ static int cmsis_dap_queue_dp_read(struct adiv5_dap *dap, unsigned reg, uint32_t
static int (cmsis_dap_queue_dp_write)(struct adiv5_dap *dap, unsigned reg, uint32_t data)
{
- LOG_DEBUG("CMSIS-ADI: cmsis_dap_queue_dp_write %d 0x%08" PRIx32, reg, data);
+ LOG_DEBUG("reg = %d, data = 0x%08" PRIx32, reg, data);
/* setting the ORUNDETECT bit causes issues for some targets,
* disable until we find out why */
@@ -129,7 +129,7 @@ static int (cmsis_dap_queue_ap_read)(struct adiv5_dap *dap, unsigned reg, uint32
if (retval != ERROR_OK)
return retval;
- LOG_DEBUG("CMSIS-ADI: cmsis_dap_queue_ap_read %d", reg);
+ LOG_DEBUG("reg = %d", reg);
retval = jtag_interface->swd->read_reg(
(CMSIS_CMD_AP | CMSIS_CMD_READ | CMSIS_CMD_A32(reg)), data);
@@ -153,7 +153,7 @@ static int (cmsis_dap_queue_ap_write)(struct adiv5_dap *dap, unsigned reg, uint3
if (retval != ERROR_OK)
return retval;
- LOG_DEBUG("CMSIS-ADI: cmsis_dap_queue_ap_write %d 0x%08" PRIx32, reg, data);
+ LOG_DEBUG("reg = %d, data = 0x%08" PRIx32, reg, data);
retval = jtag_interface->swd->write_reg(
(CMSIS_CMD_AP | CMSIS_CMD_WRITE | CMSIS_CMD_A32(reg)), data);
@@ -240,7 +240,7 @@ static const struct command_registration cmsis_dap_handlers[] = {
static int cmsis_dap_select(struct command_context *ctx)
{
- LOG_DEBUG("CMSIS-ADI: cmsis_dap_select");
+ LOG_DEBUG(" ");
int retval = register_commands(ctx, NULL, cmsis_dap_handlers);
@@ -275,7 +275,7 @@ static int cmsis_dap_init(struct command_context *ctx)
uint32_t idcode;
int status;
- LOG_DEBUG("CMSIS-ADI: cmsis_dap_init");
+ LOG_DEBUG("CMSIS-ADI init");
/* Force the DAP's ops vector for CMSIS-DAP mode.
* messy - is there a better way? */