From eecac38c2ca17f49c67429b94fded33f46406702 Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Tue, 29 Apr 2014 10:53:15 +0200 Subject: mtd: nand-mxs: Return bitflips The read_page hook shall return the number of bitflips. Implement that. Signed-off-by: Sascha Hauer --- drivers/mtd/nand/nand_mxs.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/mtd/nand/nand_mxs.c b/drivers/mtd/nand/nand_mxs.c index b06b558b08..d5428bc485 100644 --- a/drivers/mtd/nand/nand_mxs.c +++ b/drivers/mtd/nand/nand_mxs.c @@ -661,6 +661,7 @@ static int mxs_nand_ecc_read_page(struct mtd_info *mtd, struct nand_chip *nand, uint32_t channel = nand_info->dma_channel_base + nand_info->cur_chip; uint32_t corrected = 0, failed = 0; uint8_t *status; + unsigned int max_bitflips = 0; int i, ret; /* Compile the DMA descriptor - wait for ready. */ @@ -766,6 +767,7 @@ static int mxs_nand_ecc_read_page(struct mtd_info *mtd, struct nand_chip *nand, } corrected += status[i]; + max_bitflips = max_t(unsigned int, max_bitflips, status[i]); } /* Propagate ECC status to the owning MTD. */ @@ -787,10 +789,11 @@ static int mxs_nand_ecc_read_page(struct mtd_info *mtd, struct nand_chip *nand, memcpy(buf, nand_info->data_buf, mtd->writesize); + ret = 0; rtn: mxs_nand_return_dma_descs(nand_info); - return ret; + return ret ? ret : max_bitflips; } /* -- cgit v1.2.3