mtd: nand: fsl_upm: set ECC algorithm explicitly
Linux-MTD Mailing List
linux-mtd at lists.infradead.org
Mon May 23 21:59:20 PDT 2016
Gitweb: http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=ab2f5a809871dead7237a86c962d83e2f7b12e8d
Commit: ab2f5a809871dead7237a86c962d83e2f7b12e8d
Parent: d9944e1fdcd6c363a24577ac64c6d1128152ff6d
Author: Rafał Miłecki <zajec5 at gmail.com>
AuthorDate: Wed Apr 13 14:07:00 2016 +0200
Committer: Boris Brezillon <boris.brezillon at free-electrons.com>
CommitDate: Thu May 5 23:51:54 2016 +0200
mtd: nand: fsl_upm: 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/fsl_upm.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/mtd/nand/fsl_upm.c b/drivers/mtd/nand/fsl_upm.c
index cafd12d..d85fa25 100644
--- a/drivers/mtd/nand/fsl_upm.c
+++ b/drivers/mtd/nand/fsl_upm.c
@@ -170,6 +170,7 @@ static int fun_chip_init(struct fsl_upm_nand *fun,
fun->chip.read_buf = fun_read_buf;
fun->chip.write_buf = fun_write_buf;
fun->chip.ecc.mode = NAND_ECC_SOFT;
+ fun->chip.ecc.algo = NAND_ECC_HAMMING;
if (fun->mchip_count > 1)
fun->chip.select_chip = fun_select_chip;
More information about the linux-mtd-cvs
mailing list