1
0
Fork 0

[MTD] Fix do_div() type warning in mtdconcat

It expects a uint64_t; give it one.

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
hifive-unleashed-5.1
David Woodhouse 2007-07-23 13:07:06 +01:00
parent e733450b67
commit 0bf9733d0d
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}