diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2016-04-08 12:23:51 +0200 |
---|---|---|
committer | Boris Brezillon <boris.brezillon@free-electrons.com> | 2016-04-19 22:05:35 +0200 |
commit | ce111afd01bce7c137c92e9ed0dbe294a0f2373a (patch) | |
tree | a6e7382879acc5670329ad655ff58190e0159c36 /drivers/mtd/nand/socrates_nand.c | |
parent | 41ccb49e9123e268e8f84d019893cacd6a312c69 (diff) | |
download | lwn-ce111afd01bce7c137c92e9ed0dbe294a0f2373a.tar.gz lwn-ce111afd01bce7c137c92e9ed0dbe294a0f2373a.zip |
mtd: nand: socrates: 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/nand/socrates_nand.c')
-rw-r--r-- | drivers/mtd/nand/socrates_nand.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/nand/socrates_nand.c b/drivers/mtd/nand/socrates_nand.c index e3305f9dd6fb..888fd314c62a 100644 --- a/drivers/mtd/nand/socrates_nand.c +++ b/drivers/mtd/nand/socrates_nand.c @@ -180,6 +180,7 @@ static int socrates_nand_probe(struct platform_device *ofdev) nand_chip->dev_ready = socrates_nand_device_ready; nand_chip->ecc.mode = NAND_ECC_SOFT; /* enable ECC */ + nand_chip->ecc.algo = NAND_ECC_HAMMING; /* TODO: I have no idea what real delay is. */ nand_chip->chip_delay = 20; /* 20us command delay time */ |