The patch titled
Fix misparenthesization introduced by commit
78b65179d08e7e4466ba69d5ede85035a2c96358
has been added to the -mm tree. Its filename is
fix-misparenthesization-introduced-by-commit-78b65179d08e7e4466ba69d5ede85035a2c96358.patch
Before you just go and hit "reply", please:
a) Consider who else should be cc'ed
b) Prefer to cc a suitable mailing list as well
c) Ideally: find the original patch on the mailing list and do a
reply-to-all to that, adding suitable additional cc's
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
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
git-powerpc.patch
git-mtd.patch
fix-misparenthesization-introduced-by-commit-78b65179d08e7e4466ba69d5ede85035a2c96358.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