9
0
Fork 0

mtd: use correct format specifier

For the size_t type the format specifier %zu or %zx must be used.
See Documentation/printk-formats.txt in the kernel for details.

Signed-off-by: Jan Luebbe <jlu@pengutronix.de>
Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Jan Luebbe 2012-09-07 10:31:40 +02:00 committed by Sascha Hauer
parent 298d15571d
commit d17aed1a07
1 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ static ssize_t mtd_write(struct cdev* cdev, const void *buf, size_t _count,
return -EINVAL;
}
dev_dbg(cdev->dev, "write: 0x%08lx 0x%08lx\n", offset, count);
dev_dbg(cdev->dev, "write: offset: 0x%08lx count: 0x%zx\n", offset, count);
while (count) {
now = count > mtd->writesize ? mtd->writesize : count;
@ -100,7 +100,7 @@ static ssize_t mtd_write(struct cdev* cdev, const void *buf, size_t _count,
ret = mtd->write(mtd, offset, now, &retlen,
buf);
dev_dbg(cdev->dev,
"offset: 0x%08lx now: 0x%08lx retlen: 0x%08lx\n",
"offset: 0x%08lx now: 0x%zx retlen: 0x%zx\n",
offset, now, retlen);
}
if (ret)