diff options
author | Rafał Miłecki <[email protected]> | 2016-04-17 22:52:57 +0200 |
---|---|---|
committer | Boris Brezillon <[email protected]> | 2016-05-05 23:52:02 +0200 |
commit | 04dae62c89bd6e754518f9dcffac480e39f28758 (patch) | |
tree | 8cba3f906aaa5748df84263f83099c5136f56567 | |
parent | 8c6f0fc4d2d505b17fc67675f0797fe3fc6e6c26 (diff) |
mtd: nand: bf5xx: 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 <[email protected]>
Signed-off-by: Boris Brezillon <[email protected]>
-rw-r--r-- | drivers/mtd/nand/bf5xx_nand.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/nand/bf5xx_nand.c b/drivers/mtd/nand/bf5xx_nand.c index b38f41470414..37da4236ab90 100644 --- a/drivers/mtd/nand/bf5xx_nand.c +++ b/drivers/mtd/nand/bf5xx_nand.c @@ -817,6 +817,7 @@ static int bf5xx_nand_probe(struct platform_device *pdev) chip->ecc.write_page_raw = bf5xx_nand_write_page_raw; } else { chip->ecc.mode = NAND_ECC_SOFT; + chip->ecc.algo = NAND_ECC_HAMMING; } /* scan hardware nand chip and setup mtd info data struct */ |