The patch titled
Fix misparenthesization introduced by commit
78b65179d08e7e4466ba69d5ede85035a2c96358
has been removed from the -mm tree. Its filename was
fix-misparenthesization-introduced-by-commit-78b65179d08e7e4466ba69d5ede85035a2c96358.patch
This patch was dropped because it was merged into mainline or a subsystem tree
The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
------------------------------------------------------
Subject: Fix misparenthesization introduced by commit
78b65179d08e7e4466ba69d5ede85035a2c96358
From: Scott Wood <[EMAIL PROTECTED]>
Signed-off-by: Scott Wood <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/mtd/nand/nand_base.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff -puN
drivers/mtd/nand/nand_base.c~fix-misparenthesization-introduced-by-commit-78b65179d08e7e4466ba69d5ede85035a2c96358
drivers/mtd/nand/nand_base.c
---
a/drivers/mtd/nand/nand_base.c~fix-misparenthesization-introduced-by-commit-78b65179d08e7e4466ba69d5ede85035a2c96358
+++ a/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();
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
origin.patch
git-mtd.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html