diff options
author | Tom Rini <trini@ti.com> | 2013-07-12 17:18:59 -0400 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-07-12 17:18:59 -0400 |
commit | 8d94e6848fcbddb8b2ef17bc3bd8776a03b8cd5d (patch) | |
tree | 7297992ee4f0356a3d19dc47e318b3acfd8588b2 | |
parent | b7a1d13462115d2cafb0a3ffcbdce48c2f78f06e (diff) | |
parent | 1c903694370259738abccc67ff0d6e5eaf7886f9 (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-nand-flash
-rw-r--r-- | drivers/mtd/nand/mxc_nand.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/drivers/mtd/nand/mxc_nand.c b/drivers/mtd/nand/mxc_nand.c index ac435f20504..40b0741f6ab 100644 --- a/drivers/mtd/nand/mxc_nand.c +++ b/drivers/mtd/nand/mxc_nand.c @@ -1242,12 +1242,10 @@ int board_nand_init(struct nand_chip *this) this->ecc.mode = NAND_ECC_HW; } - if (this->ecc.mode == NAND_ECC_HW) { - if (is_mxc_nfc_1()) - this->ecc.strength = 1; - else - this->ecc.strength = 4; - } + if (is_mxc_nfc_1()) + this->ecc.strength = 1; + else + this->ecc.strength = 4; host->pagesize_2k = 0; |