From: Jeroen Hofstee Date: Tue, 14 Aug 2012 10:39:29 +0000 (+0000) Subject: arm: omap: Fix switching back to nandecc sw. X-Git-Tag: v2012.10-rc1~247 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d43950463c4801cf32d05da313b8e0dcc8ae00f2;p=u-boot arm: omap: Fix switching back to nandecc sw. Orjan Friberg wrote at [1]: "For the beagleboard, ecc.size is not explicitly set when doing 'nandecc sw'. If it's not set for the NAND_ECC_SOFT case in nand_scan_tail, it's set to 256 bytes. When doing 'nandecc hw', ecc.size is set to 512 bytes. Hence, when changing back to 'nandecc sw' ecc.size remains at 512 bytes and suddenly the format has changed." No patch has been submitted and the issue was still present. This patch adds the mentioned solution. Tested on a tam3517 board. [1] http://lists.denx.de/pipermail/u-boot/2012-February/119002.html cc: Orjan Friberg Acked-by: Igor Grinberg Acked-by: Nikita Kiryanov Signed-off-by: Jeroen Hofstee --- diff --git a/drivers/mtd/nand/omap_gpmc.c b/drivers/mtd/nand/omap_gpmc.c index ca868efb9f..f1469d1105 100644 --- a/drivers/mtd/nand/omap_gpmc.c +++ b/drivers/mtd/nand/omap_gpmc.c @@ -283,6 +283,7 @@ void omap_nand_switch_ecc(int32_t hardware) nand->ecc.mode = NAND_ECC_SOFT; /* Use mtd default settings */ nand->ecc.layout = NULL; + nand->ecc.size = 0; printf("SW ECC selected\n"); }