All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] BRCMNAND: Fix reporting of uncorrectable errors on subpages during page read
@ 2021-12-21  4:15 Joel Peshkin
  2021-12-28  8:33 ` Simon Glass
  2022-01-15 12:38 ` Tom Rini
  0 siblings, 2 replies; 3+ messages in thread
From: Joel Peshkin @ 2021-12-21  4:15 UTC (permalink / raw)
  To: u-boot; +Cc: Joel Peshkin, Simon Glass

Previously, a subpage with an uncorrectable error followed by a subpage
with a correctable error would return an erroneous correctable status.

Signed-off-by: Joel Peshkin <joel.peshkin@broadcom.com>
Cc: Simon Glass <sjg@chromium.org>
---
 drivers/mtd/nand/raw/brcmnand/brcmnand.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/mtd/nand/raw/brcmnand/brcmnand.c b/drivers/mtd/nand/raw/brcmnand/brcmnand.c
index f8434ca..74c9348 100644
--- a/drivers/mtd/nand/raw/brcmnand/brcmnand.c
+++ b/drivers/mtd/nand/raw/brcmnand/brcmnand.c
@@ -1632,7 +1632,7 @@ static int brcmnand_read_by_pio(struct mtd_info *mtd, struct nand_chip *chip,
 					mtd->oobsize / trans,
 					host->hwcfg.sector_size_1k);
 
-		if (!ret) {
+		if (ret != -EBADMSG) {
 			*err_addr = brcmnand_read_reg(ctrl,
 					BRCMNAND_UNCORR_ADDR) |
 				((u64)(brcmnand_read_reg(ctrl,
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-01-15 12:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-21  4:15 [PATCH] BRCMNAND: Fix reporting of uncorrectable errors on subpages during page read Joel Peshkin
2021-12-28  8:33 ` Simon Glass
2022-01-15 12:38 ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.