From: David B. <dbr...@us...> - 2009-12-18 12:09:33
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 85a4136d0baccf5c3b8f717710584f7faed0ca30 (commit) from e40f6380638ed3f7780b78ceb1411f8b7059a073 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 85a4136d0baccf5c3b8f717710584f7faed0ca30 Author: David Brownell <dbr...@us...> Date: Fri Dec 18 03:08:49 2009 -0800 dsp563xx: cygwin build fixes Signed-off-by: David Brownell <dbr...@us...> diff --git a/src/target/dsp563xx.c b/src/target/dsp563xx.c index d3fa4c3..9e2f609 100644 --- a/src/target/dsp563xx.c +++ b/src/target/dsp563xx.c @@ -547,7 +547,7 @@ int dsp563xx_halt(struct target *target) LOG_DEBUG("%02X", jtag_status); dsp563xx_once_reg_read(target->tap, DSP563XX_ONCE_OSCR, &once_status); - LOG_DEBUG("%02X", once_status); + LOG_DEBUG("%02X", (unsigned) once_status); } LOG_DEBUG("target->state: %s", target_state_name(target)); @@ -606,7 +606,7 @@ int dsp563xx_step(struct target *target, int current, uint32_t address, return ERROR_OK; } - LOG_DEBUG("%s %08X %08X", __FUNCTION__, current, address); + LOG_DEBUG("%s %08X %08X", __FUNCTION__, current, (unsigned) address); dsp563xx_jtag_debug_request(target); @@ -666,13 +666,13 @@ int dsp563xx_step(struct target *target, int current, uint32_t address, dsp563xx_once_reg_read(target->tap, DSP563XX_ONCE_OPABFR, &dr_in); - LOG_DEBUG("%08X", dr_in); + LOG_DEBUG("%08X", (unsigned) dr_in); dsp563xx_once_reg_read(target->tap, DSP563XX_ONCE_OPABDR, &dr_in); - LOG_DEBUG("%08X", dr_in); + LOG_DEBUG("%08X", (unsigned) dr_in); dsp563xx_once_reg_read(target->tap, DSP563XX_ONCE_OPABEX, &dr_in); - LOG_DEBUG("%08X", dr_in); + LOG_DEBUG("%08X", (unsigned) dr_in); /* reset trace mode */ dsp563xx_once_reg_write(target->tap, DSP563XX_ONCE_OSCR, ----------------------------------------------------------------------- Summary of changes: src/target/dsp563xx.c | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) hooks/post-receive -- Main OpenOCD repository |