diff options
author | Nelson Castillo <arhuaco@freaks-unidos.net> | 2009-06-23 14:54:32 -0400 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-06-23 19:10:46 -0400 |
commit | 76609a6928bff29ca05a94420ae3e088fbb9c2f9 (patch) | |
tree | f1c2dc260d3a7612bd13e3d4e72d655e3c66fccd | |
parent | 084da8949766f24c6a6fb21e2659c7de045fc618 (diff) |
[ARM] GTA02: build fixes (s3c2410_nand_set usage)
This patch fixes two errors we get when building GTA02 kernel.
~ use_bbt is incorrect, we need flash_bbt.
~ We do not need .force_soft_ecc because we can unset
CONFIG_MTD_NAND_S3C2410_HWECC.
Signed-off-by: Nelson Castillo <arhuaco@freaks-unidos.net>
[ben-linux@fluff.org: updated patch description]
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
-rw-r--r-- | arch/arm/mach-s3c2442/mach-gta02.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-s3c2442/mach-gta02.c b/arch/arm/mach-s3c2442/mach-gta02.c index e23b581aa0e1..0fb385bd9cd9 100644 --- a/arch/arm/mach-s3c2442/mach-gta02.c +++ b/arch/arm/mach-s3c2442/mach-gta02.c | |||
@@ -433,8 +433,7 @@ static struct s3c2410_nand_set gta02_nand_sets[] = { | |||
433 | */ | 433 | */ |
434 | .name = "neo1973-nand", | 434 | .name = "neo1973-nand", |
435 | .nr_chips = 1, | 435 | .nr_chips = 1, |
436 | .use_bbt = 1, | 436 | .flash_bbt = 1, |
437 | .force_soft_ecc = 1, | ||
438 | }, | 437 | }, |
439 | }; | 438 | }; |
440 | 439 | ||