projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6fcfd1e
)
mtd: vf610_nfc: allow bitflips in an empty page
author
Stefan Agner
<stefan@agner.ch>
Fri, 8 May 2015 17:07:08 +0000
(19:07 +0200)
committer
Scott Wood
<scottwood@freescale.com>
Sun, 24 May 2015 19:26:54 +0000
(14:26 -0500)
Allow bit flips in a empty page up to half of the recoverable
bits (strength / 2).
Signed-off-by: Stefan Agner <stefan@agner.ch>
drivers/mtd/nand/vf610_nfc.c
patch
|
blob
|
history
diff --git
a/drivers/mtd/nand/vf610_nfc.c
b/drivers/mtd/nand/vf610_nfc.c
index 66b335d00825c709719170b2bc7ca902877c126a..16485f5713e9b62f5ec546ddc472a4241a1626be 100644
(file)
--- a/
drivers/mtd/nand/vf610_nfc.c
+++ b/
drivers/mtd/nand/vf610_nfc.c
@@
-527,7
+527,7
@@
static inline int vf610_nfc_correct_data(struct mtd_info *mtd, u_char *dat)
flip = count_written_bits(dat, nfc->chip.ecc.size, ecc_count);
/* ECC failed. */
- if (flip > ecc_count)
+ if (flip > ecc_count
&& flip > (nfc->chip.ecc.strength / 2)
)
return -1;
/* Erased page. */