From 65683026a5eb07d6186dc02b33b1e5874dbb6591 Mon Sep 17 00:00:00 2001 From: "Liu, Wentao" Date: Tue, 17 Jan 2012 19:55:02 +0000 Subject: [PATCH] nand_util: correct YAFFS image write function In function nand_write_skip_bad(),for YAFFS filesystem part, write_oob() will return 0 when success, so when rval equals 0, it should continue to write the next page, and no break. Signed-off-by: Wentao, Liu Acked-by: Lei Wen Signed-off-by: Scott Wood --- drivers/mtd/nand/nand_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mtd/nand/nand_util.c b/drivers/mtd/nand/nand_util.c index 60c778e637..7ed8b1891c 100644 --- a/drivers/mtd/nand/nand_util.c +++ b/drivers/mtd/nand/nand_util.c @@ -564,7 +564,7 @@ int nand_write_skip_bad(nand_info_t *nand, loff_t offset, size_t *length, ops.oobbuf = ops.datbuf + pagesize; rval = nand->write_oob(nand, offset, &ops); - if (!rval) + if (rval != 0) break; offset += pagesize;