diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2007-08-10 17:01:31 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2007-08-22 07:43:13 -0400 |
commit | 68d09b1b6780415d82160f6b6d88e82bd724e691 (patch) | |
tree | efbe4a9fa6240e91c6c6caad43b1ddc71c645da3 /drivers/mtd/mtdoops.c | |
parent | f4e35647f5c0ac24ca1ba14f84bf817ec0483b72 (diff) |
[MTD] mtdoops printk warning fixes
drivers/mtd/mtdoops.c: In function 'mtdoops_inc_counter':
drivers/mtd/mtdoops.c:109: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'
drivers/mtd/mtdoops.c: In function 'mtdoops_console_sync':
drivers/mtd/mtdoops.c:277: warning: format '%d' expects type 'int', but argument 3 has type 'size_t'
someone buy Dave an x86_64 box.
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd/mtdoops.c')
-rw-r--r-- | drivers/mtd/mtdoops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/mtdoops.c b/drivers/mtd/mtdoops.c index 62ee2043d046..f8af627f0b98 100644 --- a/drivers/mtd/mtdoops.c +++ b/drivers/mtd/mtdoops.c | |||
@@ -104,7 +104,7 @@ static int mtdoops_inc_counter(struct mtdoops_context *cxt) | |||
104 | ret = mtd->read(mtd, cxt->nextpage * OOPS_PAGE_SIZE, 4, | 104 | ret = mtd->read(mtd, cxt->nextpage * OOPS_PAGE_SIZE, 4, |
105 | &retlen, (u_char *) &count); | 105 | &retlen, (u_char *) &count); |
106 | if ((retlen != 4) || (ret < 0)) { | 106 | if ((retlen != 4) || (ret < 0)) { |
107 | printk(KERN_ERR "mtdoops: Read failure at %d (%d of 4 read)" | 107 | printk(KERN_ERR "mtdoops: Read failure at %d (%td of 4 read)" |
108 | ", err %d.\n", cxt->nextpage * OOPS_PAGE_SIZE, | 108 | ", err %d.\n", cxt->nextpage * OOPS_PAGE_SIZE, |
109 | retlen, ret); | 109 | retlen, ret); |
110 | return 1; | 110 | return 1; |
@@ -273,7 +273,7 @@ static void mtdoops_console_sync(void) | |||
273 | cxt->writecount = 0; | 273 | cxt->writecount = 0; |
274 | 274 | ||
275 | if ((retlen != OOPS_PAGE_SIZE) || (ret < 0)) | 275 | if ((retlen != OOPS_PAGE_SIZE) || (ret < 0)) |
276 | printk(KERN_ERR "mtdoops: Write failure at %d (%d of %d written), err %d.\n", | 276 | printk(KERN_ERR "mtdoops: Write failure at %d (%td of %d written), err %d.\n", |
277 | cxt->nextpage * OOPS_PAGE_SIZE, retlen, OOPS_PAGE_SIZE, ret); | 277 | cxt->nextpage * OOPS_PAGE_SIZE, retlen, OOPS_PAGE_SIZE, ret); |
278 | 278 | ||
279 | ret = mtdoops_inc_counter(cxt); | 279 | ret = mtdoops_inc_counter(cxt); |