From: David Woodhouse Date: Mon, 23 Jul 2007 12:07:06 +0000 (+0100) Subject: [MTD] Fix do_div() type warning in mtdconcat X-Git-Tag: v2.6.24-rc1~1364^2~47 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=0bf9733d0d65ebb413d62204ad8e328e0a0b9407;p=~emulex%2Finfiniband.git [MTD] Fix do_div() type warning in mtdconcat It expects a uint64_t; give it one. Signed-off-by: David Woodhouse --- diff --git a/drivers/mtd/mtdconcat.c b/drivers/mtd/mtdconcat.c index 41844ea0246..96be7ef62f3 100644 --- a/drivers/mtd/mtdconcat.c +++ b/drivers/mtd/mtdconcat.c @@ -178,7 +178,7 @@ concat_writev(struct mtd_info *mtd, const struct kvec *vecs, /* Check alignment */ if (mtd->writesize > 1) { - loff_t __to = to; + uint64_t __to = to; if (do_div(__to, mtd->writesize) || (total_len % mtd->writesize)) return -EINVAL; }