summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/devices
diff options
context:
space:
mode:
authorRandy Dunlap2006-04-12 02:05:20 +0200
committerDavid Woodhouse2006-04-12 02:05:20 +0200
commitb104513c74d972f09737017394c5abc7e0a6835d (patch)
treedc1eb76a9b110c2a7895b9c72077d1201eecabf9 /drivers/mtd/devices
parent[PATCH] mtd, nettel: fix build error and implicit declaration (diff)
downloadkernel-qcow2-linux-b104513c74d972f09737017394c5abc7e0a6835d.tar.gz
kernel-qcow2-linux-b104513c74d972f09737017394c5abc7e0a6835d.tar.xz
kernel-qcow2-linux-b104513c74d972f09737017394c5abc7e0a6835d.zip
[PATCH] MTD: m25p80: fix printk format warning
Fix printk format warning: drivers/mtd/devices/m25p80.c:189: warning: format '%zd' expects type 'signed size_t', but argument 6 has type 'u_int32_t' Signed-off-by: Randy Dunlap <rdunlap@xenotime.net> Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd/devices')
-rw-r--r--drivers/mtd/devices/m25p80.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c
index 04e65d5dae00..d5f24089be71 100644
--- a/drivers/mtd/devices/m25p80.c
+++ b/drivers/mtd/devices/m25p80.c
@@ -186,7 +186,7 @@ static int m25p80_erase(struct mtd_info *mtd, struct erase_info *instr)
struct m25p *flash = mtd_to_m25p(mtd);
u32 addr,len;
- DEBUG(MTD_DEBUG_LEVEL2, "%s: %s %s 0x%08x, len %d\n",
+ DEBUG(MTD_DEBUG_LEVEL2, "%s: %s %s 0x%08x, len %zd\n",
flash->spi->dev.bus_id, __FUNCTION__, "at",
(u32)instr->addr, instr->len);