diff options
author | Boris BREZILLON <boris.brezillon@free-electrons.com> | 2015-12-07 23:25:59 +0100 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2016-01-26 10:27:35 -0800 |
commit | f88f44cbf10cf5bd42d6e46ea6625d9bfa5f155d (patch) | |
tree | 0853dfd930e735142ab2a20583f3a838360f73be /drivers/mtd/nand/s3c2410.c | |
parent | 2c9e57799f1b7ef35a9e7f774edac6b3feac6399 (diff) | |
download | linux-stable-f88f44cbf10cf5bd42d6e46ea6625d9bfa5f155d.tar.gz linux-stable-f88f44cbf10cf5bd42d6e46ea6625d9bfa5f155d.tar.bz2 linux-stable-f88f44cbf10cf5bd42d6e46ea6625d9bfa5f155d.zip |
mtd: nand: s3c2410: kill the ->ecc_layout field
The s3c2410 is allowing board data to overload the default ECC layout
defined inside the driver, but this feature is not used by board
specific definitions.
Kill this field so that we can easily move to a model where ecclayout
are dynamically allocated by the NAND controller driver.
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Acked-by: Krzysztof Kozlowski <k.kozlowski@samsung.com>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers/mtd/nand/s3c2410.c')
-rw-r--r-- | drivers/mtd/nand/s3c2410.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/mtd/nand/s3c2410.c b/drivers/mtd/nand/s3c2410.c index 01ac74fa3b95..9c9397b54b2c 100644 --- a/drivers/mtd/nand/s3c2410.c +++ b/drivers/mtd/nand/s3c2410.c @@ -861,9 +861,6 @@ static void s3c2410_nand_init_chip(struct s3c2410_nand_info *info, chip->ecc.mode = NAND_ECC_SOFT; #endif - if (set->ecc_layout != NULL) - chip->ecc.layout = set->ecc_layout; - if (set->disable_ecc) chip->ecc.mode = NAND_ECC_NONE; |