diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2016-04-13 12:06:54 (GMT) |
---|---|---|
committer | Boris Brezillon <boris.brezillon@free-electrons.com> | 2016-05-05 21:51:52 (GMT) |
commit | d7b83b8a6dda3edada04f9395e2ef6463e099277 (patch) | |
tree | 6fa4992bbf09d5b57ffeeaa956e7221778a7b736 /drivers/mtd | |
parent | aab616e31d1c7ec3726f7f5cbdaaec98759ebe93 (diff) | |
download | linux-d7b83b8a6dda3edada04f9395e2ef6463e099277.tar.xz |
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 <zajec5@gmail.com>
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/nand/omap2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/nand/omap2.c b/drivers/mtd/nand/omap2.c index 55916786d..16da65b 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; } |