]> git.sur5r.net Git - u-boot/commitdiff
mtd: OneNAND: initialize mtd->writebufsize to let UBI work
authorLadislav Michl <ladis@linux-mips.org>
Tue, 12 Jul 2016 18:28:21 +0000 (20:28 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 22 Jul 2016 18:46:12 +0000 (14:46 -0400)
io_init checks this value and fails with "bad write buffer size 0 for
2048 min. I/O unit"

Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
drivers/mtd/onenand/onenand_base.c

index d194d974661c567c12f8bd73ad1f75b6e2d67374..0e35dc5b88f7176bd4e4037068b8e117c6666c82 100644 (file)
@@ -2657,6 +2657,7 @@ int onenand_probe(struct mtd_info *mtd)
        mtd->_sync = onenand_sync;
        mtd->_block_isbad = onenand_block_isbad;
        mtd->_block_markbad = onenand_block_markbad;
+       mtd->writebufsize = mtd->writesize;
 
        return 0;
 }