diff options
author | Thomas Gleixner <tglx@cruncher.tec.linutronix.de> | 2006-05-23 06:00:46 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@cruncher.tec.linutronix.de> | 2006-05-23 06:00:46 -0400 |
commit | 6dfc6d250d0b7ebaa6423c44dcd09fcfe68deabd (patch) | |
tree | 2be25b1e302eca5984a8ad5ed3e5bde77bafaabb /drivers/mtd/nand/ts7250.c | |
parent | 7aa65bfd6793a56cc3bbce8436abbfea3a7bdd1f (diff) |
[MTD] NAND modularize ECC
First step of modularizing ECC support.
- Move ECC related functionality into a seperate embedded data structure
- Get rid of the hardware dependend constants to simplify new ECC models
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'drivers/mtd/nand/ts7250.c')
-rw-r--r-- | drivers/mtd/nand/ts7250.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/ts7250.c b/drivers/mtd/nand/ts7250.c index 622db3127f7c..70bce1b0326c 100644 --- a/drivers/mtd/nand/ts7250.c +++ b/drivers/mtd/nand/ts7250.c | |||
@@ -155,7 +155,7 @@ static int __init ts7250_init(void) | |||
155 | this->hwcontrol = ts7250_hwcontrol; | 155 | this->hwcontrol = ts7250_hwcontrol; |
156 | this->dev_ready = ts7250_device_ready; | 156 | this->dev_ready = ts7250_device_ready; |
157 | this->chip_delay = 15; | 157 | this->chip_delay = 15; |
158 | this->eccmode = NAND_ECC_SOFT; | 158 | this->ecc.mode = NAND_ECC_SOFT; |
159 | 159 | ||
160 | printk("Searching for NAND flash...\n"); | 160 | printk("Searching for NAND flash...\n"); |
161 | /* Scan to find existence of the device */ | 161 | /* Scan to find existence of the device */ |