diff options
author | Aaron Sierra <asierra@xes-inc.com> | 2015-01-15 00:41:31 +0100 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2015-02-02 06:10:58 +0100 |
commit | e0377cdebaf3913bff693c9eea17ff6eb4d7abc8 (patch) | |
tree | 4af65d7984f566492e043f4376757fbcf726c03d /drivers/mtd/nand/nandsim.c | |
parent | mtd: nand: default bitflip-reporting threshold to 75% of correction strength (diff) | |
download | linux-e0377cdebaf3913bff693c9eea17ff6eb4d7abc8.tar.xz linux-e0377cdebaf3913bff693c9eea17ff6eb4d7abc8.zip |
mtd: nand: Request strength instead of bytes for soft BCH
Previously, we requested that drivers pass ecc.size and ecc.bytes when
using NAND_ECC_SOFT_BCH. However, a driver is likely to only know the ECC
strength required for its NAND, so each driver would need to perform a
strength-to-bytes calculation.
Avoid duplicating this calculation in each driver by asking drivers to
pass ecc.size and ecc.strength so that the strength-to-bytes calculation
need only be implemented once.
This reverts/generalizes this commit:
mtd: nand: Base BCH ECC bytes on required strength
Signed-off-by: Aaron Sierra <asierra@xes-inc.com>
Reviewed-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers/mtd/nand/nandsim.c')
-rw-r--r-- | drivers/mtd/nand/nandsim.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mtd/nand/nandsim.c b/drivers/mtd/nand/nandsim.c index a8fa8dad9b23..f2324271b94e 100644 --- a/drivers/mtd/nand/nandsim.c +++ b/drivers/mtd/nand/nandsim.c @@ -2337,6 +2337,7 @@ static int __init ns_init_module(void) } chip->ecc.mode = NAND_ECC_SOFT_BCH; chip->ecc.size = 512; + chip->ecc.strength = bch; chip->ecc.bytes = eccbytes; NS_INFO("using %u-bit/%u bytes BCH ECC\n", bch, chip->ecc.size); } |