[MTD] [NAND] Fix misparenthesization introduced by commit 78b65179...
Linux-MTD Mailing List
linux-mtd at lists.infradead.org
Sun Feb 3 06:59:02 EST 2008
Gitweb: http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=1c45f60406e61a06631416264e49eb5afd9fc324
Commit: 1c45f60406e61a06631416264e49eb5afd9fc324
Parent: 6208e77e7fa9e69f399fddc55b1cf9527fbde599
Author: Scott Wood <scottwood at freescale.com>
AuthorDate: Wed Jan 16 10:36:03 2008 -0600
Committer: David Woodhouse <dwmw2 at infradead.org>
CommitDate: Sun Feb 3 22:14:12 2008 +1100
[MTD] [NAND] Fix misparenthesization introduced by commit 78b65179...
Signed-off-by: Scott Wood <scottwood at freescale.com>
Signed-off-by: David Woodhouse <dwmw2 at infradead.org>
---
drivers/mtd/nand/nand_base.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
index 85a7283..971d58c 100644
--- a/drivers/mtd/nand/nand_base.c
+++ b/drivers/mtd/nand/nand_base.c
@@ -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();
More information about the linux-mtd-cvs
mailing list