diff options
author | Ben Dooks <ben-mtd@fluff.org> | 2008-04-15 10:36:21 (GMT) |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2008-04-22 20:41:19 (GMT) |
commit | 1c21ab67b7d3c9a1296019939e0efb69350487cf (patch) | |
tree | 6050041e56b1f064dc38dd5c5e5493c9ab0caaa4 /drivers/mtd | |
parent | c45c6c68333c04de84c21a4b869f36a96f642779 (diff) | |
download | linux-1c21ab67b7d3c9a1296019939e0efb69350487cf.tar.xz |
[MTD] [NAND] S3C2410 Allow ECC layout to be passed through platform data
Add support for the ECC layout to be passed via the
platform data specified by the board.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd')
-rw-r--r-- | drivers/mtd/nand/s3c2410.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/mtd/nand/s3c2410.c b/drivers/mtd/nand/s3c2410.c index 35401f7..ccacc40 100644 --- a/drivers/mtd/nand/s3c2410.c +++ b/drivers/mtd/nand/s3c2410.c @@ -672,6 +672,9 @@ static void s3c2410_nand_init_chip(struct s3c2410_nand_info *info, } else { chip->ecc.mode = NAND_ECC_SOFT; } + + if (set->ecc_layout != NULL) + chip->ecc.layout = set->ecc_layout; } /* s3c2410_nand_update_chip |