|
@@ -202,8 +202,6 @@ static int goldfish_nand_read(struct mtd_info *mtd, loff_t from, size_t len,
|
|
|
|
|
|
if (from + len > mtd->size)
|
|
|
goto invalid_arg;
|
|
|
- if (len != mtd->writesize)
|
|
|
- goto invalid_arg;
|
|
|
|
|
|
rem = do_div(from, mtd->writesize);
|
|
|
if (rem)
|
|
@@ -226,8 +224,6 @@ static int goldfish_nand_write(struct mtd_info *mtd, loff_t to, size_t len,
|
|
|
|
|
|
if (to + len > mtd->size)
|
|
|
goto invalid_arg;
|
|
|
- if (len != mtd->writesize)
|
|
|
- goto invalid_arg;
|
|
|
|
|
|
rem = do_div(to, mtd->writesize);
|
|
|
if (rem)
|