mtd: nand: mxc: set ECC algorithm explicitly

Linux-MTD Mailing List linux-mtd at lists.infradead.org
Mon May 23 21:59:07 PDT 2016


Gitweb:     http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=c1c7040e072caac6445a1e298bd1fc5e8da0a5f5
Commit:     c1c7040e072caac6445a1e298bd1fc5e8da0a5f5
Parent:     050658c8f9bd8d7b2addf40f6a5b340d5d4ec21a
Author:     Rafał Miłecki <zajec5 at gmail.com>
AuthorDate: Fri Apr 8 12:23:46 2016 +0200
Committer:  Boris Brezillon <boris.brezillon at free-electrons.com>
CommitDate: Tue Apr 19 22:05:32 2016 +0200

    mtd: nand: mxc: set ECC algorithm explicitly
    
    This is part of process deprecating NAND_ECC_SOFT_BCH (and switching to
    enum nand_ecc_algo).
    
    Signed-off-by: Rafał Miłecki <zajec5 at gmail.com>
    Signed-off-by: Boris Brezillon <boris.brezillon at free-electrons.com>
---
 drivers/mtd/nand/mxc_nand.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mtd/nand/mxc_nand.c b/drivers/mtd/nand/mxc_nand.c
index 854c832..57b1b74 100644
--- a/drivers/mtd/nand/mxc_nand.c
+++ b/drivers/mtd/nand/mxc_nand.c
@@ -1585,6 +1585,7 @@ static int mxcnd_probe(struct platform_device *pdev)
 		this->ecc.mode = NAND_ECC_HW;
 	} else {
 		this->ecc.mode = NAND_ECC_SOFT;
+		this->ecc.algo = NAND_ECC_HAMMING;
 	}
 
 	/* NAND bus width determines access functions used by upper layer */



More information about the linux-mtd-cvs mailing list