diff options
| author | Benoît Thébaudeau <[email protected]> | 2012-08-13 22:50:19 +0200 |
|---|---|---|
| committer | Scott Wood <[email protected]> | 2012-09-17 19:51:45 -0500 |
| commit | 7c28a1cfdf5e919f2a09abb644f614f1b67d3322 (patch) | |
| tree | 0fa9526f5524c3a0ab3c9481d261e66f4456e44f | |
| parent | 0e499b07ef417b153e3feb54c249d56edbc364b4 (diff) | |
mtd mxc nand: Fix ECC state after read_page_raw_syndrome()
mxc_nand_read_page_raw_syndrome() should reenable ECC upon exit. This fixes ECC
errors left uncorrected after a call to this function.
Signed-off-by: Benoît Thébaudeau <[email protected]>
Cc: Scott Wood <[email protected]>
Cc: Stefano Babic <[email protected]>
Signed-off-by: Scott Wood <[email protected]>
| -rw-r--r-- | drivers/mtd/nand/mxc_nand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/mxc_nand.c b/drivers/mtd/nand/mxc_nand.c index 7a180e18390..2ae41dcd1b4 100644 --- a/drivers/mtd/nand/mxc_nand.c +++ b/drivers/mtd/nand/mxc_nand.c @@ -470,7 +470,7 @@ static int mxc_nand_read_page_raw_syndrome(struct mtd_info *mtd, size = mtd->oobsize - (oob - chip->oob_poi); if (size) chip->read_buf(mtd, oob, size); - _mxc_nand_enable_hwecc(mtd, 0); + _mxc_nand_enable_hwecc(mtd, 1); return 0; } |
