]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
[MTD] [NAND] Fix misparenthesization introduced by commit 78b65179...
authorScott Wood <scottwood@freescale.com>
Wed, 16 Jan 2008 16:36:03 +0000 (10:36 -0600)
committerDavid Woodhouse <dwmw2@infradead.org>
Sun, 3 Feb 2008 11:14:12 +0000 (22:14 +1100)
Signed-off-by: Scott Wood <scottwood@freescale.com>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
drivers/mtd/nand/nand_base.c

index 85a7283845ff2a0b5270d87233fbb7d73f2b471f..971d58c391f1c90b07b21285f3b18d643a531d64 100644 (file)
@@ -2472,9 +2472,9 @@ int nand_scan_tail(struct mtd_info *mtd)
                if ((!chip->ecc.calculate || !chip->ecc.correct ||
                     !chip->ecc.hwctl) &&
                    (!chip->ecc.read_page ||
-                    chip->ecc.read_page == nand_read_page_hwecc) ||
+                    chip->ecc.read_page == nand_read_page_hwecc ||
                     !chip->ecc.write_page ||
-                    chip->ecc.write_page == nand_write_page_hwecc) {
+                    chip->ecc.write_page == nand_write_page_hwecc)) {
                        printk(KERN_WARNING "No ECC functions supplied, "
                               "Hardware ECC not possible\n");
                        BUG();