From 8f8a18906b8280645a5ee560de78b00799eef767 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Mon, 2 Jun 2014 17:18:45 +0200 Subject: [PATCH] fix format specifiers Signed-off-by: Sascha Hauer --- common/bootm.c | 4 ++-- common/uimage.c | 4 +++- drivers/eeprom/at25.c | 4 ++-- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/common/bootm.c b/common/bootm.c index 871959c54..71390cb84 100644 --- a/common/bootm.c +++ b/common/bootm.c @@ -312,7 +312,7 @@ static int bootm_open_oftree(struct image_data *data, const char *oftree, int nu static void bootm_print_info(struct image_data *data) { if (data->os_res) - printf("OS image is at 0x%08x-0x%08x\n", + printf("OS image is at " PRINTF_CONVERSION_RESOURCE "-" PRINTF_CONVERSION_RESOURCE "\n", data->os_res->start, data->os_res->end); else @@ -329,7 +329,7 @@ static void bootm_print_info(struct image_data *data) printf(", multifile image %d", data->initrd_num); printf("\n"); if (data->initrd_res) - printf("initrd is at 0x%08x-0x%08x\n", + printf("initrd is at " PRINTF_CONVERSION_RESOURCE "-" PRINTF_CONVERSION_RESOURCE "\n", data->initrd_res->start, data->initrd_res->end); else diff --git a/common/uimage.c b/common/uimage.c index 243dfb0df..4ef09682c 100644 --- a/common/uimage.c +++ b/common/uimage.c @@ -353,7 +353,9 @@ static int uimage_sdram_flush(void *buf, unsigned int len) uimage_resource = request_sdram_region("uimage", start, size); if (!uimage_resource) { - printf("unable to request SDRAM 0x%08x-0x%08x\n", + printf("unable to request SDRAM " + PRINTF_CONVERSION_RESOURCE "-" + PRINTF_CONVERSION_RESOURCE "\n", start, start + size - 1); return -ENOMEM; } diff --git a/drivers/eeprom/at25.c b/drivers/eeprom/at25.c index 266f2615f..3e75b5651 100644 --- a/drivers/eeprom/at25.c +++ b/drivers/eeprom/at25.c @@ -117,8 +117,8 @@ static ssize_t at25_ee_read(struct cdev *cdev, */ status = spi_sync(at25->spi, &m); dev_dbg(at25->cdev.dev, - "read %d bytes at %llu --> %d\n", - count, offset, (int) status); + "read %zd bytes at %llu --> %zd\n", + count, offset, status); return status ? status : count; }