diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2016-04-08 12:23:50 +0200 |
---|---|---|
committer | Boris Brezillon <boris.brezillon@free-electrons.com> | 2016-04-19 22:05:34 +0200 |
commit | 41ccb49e9123e268e8f84d019893cacd6a312c69 (patch) | |
tree | cc60f83710725f831e1d1344fa49c64e40220aa8 /drivers/mtd | |
parent | mtd: nand: pasemi: set ECC algorithm explicitly (diff) | |
download | linux-41ccb49e9123e268e8f84d019893cacd6a312c69.tar.xz linux-41ccb49e9123e268e8f84d019893cacd6a312c69.zip |
mtd: nand: plat: 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/plat_nand.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/nand/plat_nand.c b/drivers/mtd/nand/plat_nand.c index e4e50da30444..415a53a0deeb 100644 --- a/drivers/mtd/nand/plat_nand.c +++ b/drivers/mtd/nand/plat_nand.c @@ -74,6 +74,7 @@ static int plat_nand_probe(struct platform_device *pdev) data->chip.ecc.hwctl = pdata->ctrl.hwcontrol; data->chip.ecc.mode = NAND_ECC_SOFT; + data->chip.ecc.algo = NAND_ECC_HAMMING; platform_set_drvdata(pdev, data); |