From: Rafał Miłecki Date: Wed, 13 Apr 2016 12:06:59 +0000 (+0200) Subject: mtd: nand: cmx270: set ECC algorithm explicitly X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d9944e1fdcd6c363a24577ac64c6d1128152ff6d;p=linux-beck.git mtd: nand: cmx270: 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 Signed-off-by: Boris Brezillon --- diff --git a/drivers/mtd/nand/cmx270_nand.c b/drivers/mtd/nand/cmx270_nand.c index 6f97ebba52c4..49133783ca53 100644 --- a/drivers/mtd/nand/cmx270_nand.c +++ b/drivers/mtd/nand/cmx270_nand.c @@ -187,6 +187,7 @@ static int __init cmx270_init(void) /* 15 us command delay time */ this->chip_delay = 20; this->ecc.mode = NAND_ECC_SOFT; + this->ecc.algo = NAND_ECC_HAMMING; /* read/write functions */ this->read_byte = cmx270_read_byte;