* [PATCH] Fix misparenthesization introduced by commit 78b65179d08e7e4466ba69d5ede85035a2c96358
@ 2008-01-16 16:36 Scott Wood
0 siblings, 0 replies; only message in thread
From: Scott Wood @ 2008-01-16 16:36 UTC (permalink / raw)
To: dwmw2; +Cc: akpm, linux-mtd
Signed-off-by: Scott Wood <scottwood@freescale.com>
---
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();
--
1.5.3.8
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2008-01-16 18:22 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-01-16 16:36 [PATCH] Fix misparenthesization introduced by commit 78b65179d08e7e4466ba69d5ede85035a2c96358 Scott Wood
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox