C99 printf() -Werror fixes
git-svn-id: svn://svn.berlios.de/openocd/trunk@2323 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
5c82587a1e
commit
19a678834d
|
@ -211,7 +211,7 @@ int mips_ejtag_enter_debug(mips_ejtag_t *ejtag_info)
|
||||||
/* break bit will be cleared by hardware */
|
/* break bit will be cleared by hardware */
|
||||||
ejtag_ctrl = ejtag_info->ejtag_ctrl;
|
ejtag_ctrl = ejtag_info->ejtag_ctrl;
|
||||||
mips_ejtag_drscan_32(ejtag_info, &ejtag_ctrl);
|
mips_ejtag_drscan_32(ejtag_info, &ejtag_ctrl);
|
||||||
LOG_DEBUG("ejtag_ctrl: 0x%8.8x", ejtag_ctrl);
|
LOG_DEBUG("ejtag_ctrl: 0x%8.8" PRIx32 "", ejtag_ctrl);
|
||||||
if((ejtag_ctrl & EJTAG_CTRL_BRKST) == 0)
|
if((ejtag_ctrl & EJTAG_CTRL_BRKST) == 0)
|
||||||
LOG_DEBUG("Failed to enter Debug Mode!");
|
LOG_DEBUG("Failed to enter Debug Mode!");
|
||||||
|
|
||||||
|
@ -261,7 +261,7 @@ int mips_ejtag_init(mips_ejtag_t *ejtag_info)
|
||||||
uint32_t ejtag_version;
|
uint32_t ejtag_version;
|
||||||
|
|
||||||
mips_ejtag_get_impcode(ejtag_info, &ejtag_info->impcode);
|
mips_ejtag_get_impcode(ejtag_info, &ejtag_info->impcode);
|
||||||
LOG_DEBUG("impcode: 0x%8.8x", ejtag_info->impcode);
|
LOG_DEBUG("impcode: 0x%8.8" PRIx32 "", ejtag_info->impcode);
|
||||||
|
|
||||||
/* get ejtag version */
|
/* get ejtag version */
|
||||||
ejtag_version = ((ejtag_info->impcode >> 29) & 0x07);
|
ejtag_version = ((ejtag_info->impcode >> 29) & 0x07);
|
||||||
|
|
Loading…
Reference in New Issue