From: Rafał Miłecki Date: Wed, 13 Apr 2016 12:06:54 +0000 (+0200) Subject: mtd: nand: omap2: set ECC algorithm explicitly X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d7b83b8a6dda3edada04f9395e2ef6463e099277;p=linux-beck.git mtd: nand: omap2: 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/omap2.c b/drivers/mtd/nand/omap2.c index 55916786d04e..16da65baa4c7 100644 --- a/drivers/mtd/nand/omap2.c +++ b/drivers/mtd/nand/omap2.c @@ -2012,6 +2012,7 @@ static int omap_nand_probe(struct platform_device *pdev) */ if (info->ecc_opt == OMAP_ECC_HAM1_CODE_SW) { nand_chip->ecc.mode = NAND_ECC_SOFT; + nand_chip->ecc.algo = NAND_ECC_HAMMING; goto scan_tail; }