[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>
This commit is contained in:
Ben Dooks 2008-04-15 11:36:21 +01:00 committed by David Woodhouse
parent c45c6c6833
commit 1c21ab67b7
2 changed files with 4 additions and 0 deletions

View file

@ -672,6 +672,9 @@ static void s3c2410_nand_init_chip(struct s3c2410_nand_info *info,
} else { } else {
chip->ecc.mode = NAND_ECC_SOFT; chip->ecc.mode = NAND_ECC_SOFT;
} }
if (set->ecc_layout != NULL)
chip->ecc.layout = set->ecc_layout;
} }
/* s3c2410_nand_update_chip /* s3c2410_nand_update_chip

View file

@ -27,6 +27,7 @@ struct s3c2410_nand_set {
char *name; char *name;
int *nr_map; int *nr_map;
struct mtd_partition *partitions; struct mtd_partition *partitions;
struct nand_ecclayout *ecc_layout;
}; };
struct s3c2410_platform_nand { struct s3c2410_platform_nand {