aboutsummaryrefslogtreecommitdiff
path: root/drivers/mtd/spi-mem/spi_mem.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mtd/spi-mem/spi_mem.c')
-rw-r--r--drivers/mtd/spi-mem/spi_mem.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/mtd/spi-mem/spi_mem.c b/drivers/mtd/spi-mem/spi_mem.c
index 63ea7699b..010e8b62a 100644
--- a/drivers/mtd/spi-mem/spi_mem.c
+++ b/drivers/mtd/spi-mem/spi_mem.c
@@ -5,6 +5,8 @@
*/
#include <assert.h>
+#include <inttypes.h>
+#include <stdint.h>
#include <libfdt.h>
@@ -150,7 +152,7 @@ int spi_mem_exec_op(const struct spi_mem_op *op)
const struct spi_bus_ops *ops = spi_slave.ops;
int ret;
- VERBOSE("%s: cmd:%x mode:%d.%d.%d.%d addqr:%llx len:%x\n",
+ VERBOSE("%s: cmd:%x mode:%d.%d.%d.%d addqr:%" PRIx64 " len:%x\n",
__func__, op->cmd.opcode, op->cmd.buswidth, op->addr.buswidth,
op->dummy.buswidth, op->data.buswidth,
op->addr.val, op->data.nbytes);