]> git.kernelconcepts.de Git - karo-tx-uboot.git/commit
mtd: nand: omap: fix ecc ops assignment when changing ecc
authorNikita Kiryanov <nikita@compulab.co.il>
Tue, 17 Dec 2013 13:18:01 +0000 (15:18 +0200)
committerScott Wood <scottwood@freescale.com>
Tue, 17 Dec 2013 23:47:47 +0000 (17:47 -0600)
commitfcd052457434d1f86c4e6d5f90d838210ab87d8b
tree814074420a575be419fa57e787a97490bf0f3c74
parenteb237a15bd793a785feb0c77c459c9f97c6fbe4c
mtd: nand: omap: fix ecc ops assignment when changing ecc

If we change to software ecc and then back to hardware ecc, the nand ecc ops
pointers are populated with incorrect function pointers. This is related to the
way nand_scan_tail() handles assigning functions to ecc ops:

If we are switching to software ecc/no ecc, it assigns default functions to the
ecc ops pointers unconditionally, but if we are switching to hardware ecc,
the default hardware ecc functions are assigned to ops pointers only if these
pointers are NULL (so that drivers could set their own functions). In the case
of omap_gpmc.c driver, when we switch to sw ecc, sw ecc functions are
assigned to ecc ops by nand_scan_tail(), and when we later switch to hw ecc,
the ecc ops pointers are not NULL, so nand_scan_tail() does not overwrite
them with hw ecc functions.
The result: sw ecc functions used to write hw ecc data.

Clear the ecc ops pointers in omap_gpmc.c when switching ecc types, so that
ops which were not assigned by the driver will get the correct default values
from nand_scan_tail().

Cc: Scott Wood <scottwood@freescale.com>
Cc: Pekon Gupta <pekon@ti.com>
Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il>
drivers/mtd/nand/omap_gpmc.c