summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorScott Wood2008-01-16 17:36:03 +0100
committerDavid Woodhouse2008-02-03 12:14:12 +0100
commit1c45f60406e61a06631416264e49eb5afd9fc324 (patch)
tree4b86b3e9b50d004a909a712e65402821928ee354 /drivers
parentMerge git://git.infradead.org/~dedekind/ubi-2.6 (diff)
downloadkernel-qcow2-linux-1c45f60406e61a06631416264e49eb5afd9fc324.tar.gz
kernel-qcow2-linux-1c45f60406e61a06631416264e49eb5afd9fc324.tar.xz
kernel-qcow2-linux-1c45f60406e61a06631416264e49eb5afd9fc324.zip
[MTD] [NAND] Fix misparenthesization introduced by commit 78b65179...
Signed-off-by: Scott Wood <scottwood@freescale.com> Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/mtd/nand/nand_base.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/nand/nand_base.c b/drivers/mtd/nand/nand_base.c
index 85a7283845ff..971d58c391f1 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();