projects
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e25ee03
)
NAND: Update check condition for nand_read_page_hwecc API
author
Sandeep Paulraj
<s-paulraj@ti.com>
Sat, 7 Nov 2009 19:25:03 +0000
(14:25 -0500)
committer
Scott Wood
<scottwood@freescale.com>
Fri, 13 Nov 2009 22:56:16 +0000
(16:56 -0600)
The patch updates the check condition for determining
whether the ECC corrections has failed.
This makes it similar to what is in the kernel NAND driver.
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
drivers/mtd/nand/nand_base.c
patch
|
blob
|
history
diff --git
a/drivers/mtd/nand/nand_base.c
b/drivers/mtd/nand/nand_base.c
index
cfd582a
..
52b0c1a
100644
(file)
--- a/
drivers/mtd/nand/nand_base.c
+++ b/
drivers/mtd/nand/nand_base.c
@@
-1062,7
+1062,7
@@
static int nand_read_page_hwecc(struct mtd_info *mtd, struct nand_chip *chip,
int stat;
stat = chip->ecc.correct(mtd, p, &ecc_code[i], &ecc_calc[i]);
- if (stat
== -1
)
+ if (stat
< 0
)
mtd->ecc_stats.failed++;
else
mtd->ecc_stats.corrected += stat;