[MTD] Fix mtdconcat build. We didn't introduce mtd->writesize yet.

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
This commit is contained in:
David Woodhouse 2006-05-17 21:53:58 +01:00
Родитель e8d32937d9
Коммит fd0e518745
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -276,8 +276,8 @@ concat_writev_ecc(struct mtd_info *mtd, const struct kvec *vecs,
return -EINVAL;
/* Check alignment */
if (mtd->writesize > 1)
if ((to % mtd->writesize) || (total_len % mtd->writesize))
if (mtd->oobblock > 1)
if ((to % mtd->oobblock) || (total_len % mtd->oobblock))
return -EINVAL;
/* make a copy of vecs */