Commit 0bf9733d authored by David Woodhouse's avatar David Woodhouse

[MTD] Fix do_div() type warning in mtdconcat

It expects a uint64_t; give it one.
Signed-off-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
parent e733450b
...@@ -178,7 +178,7 @@ concat_writev(struct mtd_info *mtd, const struct kvec *vecs, ...@@ -178,7 +178,7 @@ concat_writev(struct mtd_info *mtd, const struct kvec *vecs,
/* Check alignment */ /* Check alignment */
if (mtd->writesize > 1) { if (mtd->writesize > 1) {
loff_t __to = to; uint64_t __to = to;
if (do_div(__to, mtd->writesize) || (total_len % mtd->writesize)) if (do_div(__to, mtd->writesize) || (total_len % mtd->writesize))
return -EINVAL; return -EINVAL;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment