From 010492a1ede305d2375602afa26f50281fea3e2f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20B=C3=A4der?= Date: Thu, 25 Mar 2010 11:24:42 +0100 Subject: [PATCH] change %x and %d to PRIx32 and PRId32 where needed for cygwin --- src/flash/nand/lpc3180.c | 8 ++++---- src/flash/nor/pic32mx.c | 2 +- src/target/arm_adi_v5.c | 2 +- src/target/arm_dpm.c | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/flash/nand/lpc3180.c b/src/flash/nand/lpc3180.c index 6562e041c..40324f285 100644 --- a/src/flash/nand/lpc3180.c +++ b/src/flash/nand/lpc3180.c @@ -817,7 +817,7 @@ static int lpc3180_write_page(struct nand_device *nand, uint32_t page, uint8_t * target_free_working_area(target,pworking_area); - LOG_INFO("Page = 0x%x was written.",page); + LOG_INFO("Page = 0x%" PRIx32 " was written.",page); } else @@ -1112,7 +1112,7 @@ static int lpc3180_read_page(struct nand_device *nand, uint32_t page, uint8_t *d target_read_memory(target, target_mem_base+DATA_OFFS, 4, nand->page_size == 2048?512:128, page_buffer); memcpy(data, page_buffer, data_size); - LOG_INFO("Page = 0x%x was read.",page); + LOG_INFO("Page = 0x%" PRIx32 " was read.",page); /* check hw generated ECC for each 256 bytes block with the saved ECC in flash spare area*/ int idx = nand->page_size/0x200 ; @@ -1120,9 +1120,9 @@ static int lpc3180_read_page(struct nand_device *nand, uint32_t page, uint8_t *d target_read_memory(target, target_mem_base+ECC_OFFS, 4, 8, ecc_hw_buffer); for(i=0;iapsel, idreg, romaddr); diff --git a/src/target/arm_dpm.c b/src/target/arm_dpm.c index 8e8cc17ae..213afbd32 100644 --- a/src/target/arm_dpm.c +++ b/src/target/arm_dpm.c @@ -718,7 +718,7 @@ static int dpm_bpwp_setup(struct arm_dpm *dpm, struct dpm_bpwp *xp, xp->control = control; xp->dirty = true; - LOG_DEBUG("BPWP: addr %8.8x, control %x, number %d", + LOG_DEBUG("BPWP: addr %8.8" PRIx32 ", control %" PRIx32 ", number %d", xp->address, control, xp->number); /* hardware is updated in write_dirty_registers() */ -- 2.11.4.GIT