diff options
author | Ben Dooks <ben-mtd@fluff.org> | 2008-04-15 06:36:22 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2008-04-22 16:41:32 -0400 |
commit | 37e5ffa3f15bd9a8b133ab13e9bef833b5eb33d4 (patch) | |
tree | b00891a6842d7eb1c4ddcc3b8283e1aed29bff97 /drivers | |
parent | 1c21ab67b7d3c9a1296019939e0efb69350487cf (diff) |
[MTD] [NAND] S3C2410 Allow ECC disable to be specified by the board
Add support to disable ECC checking for a given chip
when passed by the board via the platform data.
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers')
-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 ccacc40e64ee..b34a460ab679 100644 --- a/drivers/mtd/nand/s3c2410.c +++ b/drivers/mtd/nand/s3c2410.c | |||
@@ -675,6 +675,9 @@ static void s3c2410_nand_init_chip(struct s3c2410_nand_info *info, | |||
675 | 675 | ||
676 | if (set->ecc_layout != NULL) | 676 | if (set->ecc_layout != NULL) |
677 | chip->ecc.layout = set->ecc_layout; | 677 | chip->ecc.layout = set->ecc_layout; |
678 | |||
679 | if (set->disable_ecc) | ||
680 | chip->ecc.mode = NAND_ECC_NONE; | ||
678 | } | 681 | } |
679 | 682 | ||
680 | /* s3c2410_nand_update_chip | 683 | /* s3c2410_nand_update_chip |