[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1340799232-23092-1-git-send-email-stigge@antcom.de>
Date: Wed, 27 Jun 2012 14:13:52 +0200
From: Roland Stigge <stigge@...com.de>
To: dedekind1@...il.com, linux-mtd@...ts.infradead.org,
linux-kernel@...r.kernel.org, linux-doc@...r.kernel.org,
devicetree-discuss@...ts.ozlabs.org, dwmw2@...radead.org,
kevin.wells@....com, srinivas.bakki@....com,
linux-arm-kernel@...ts.infradead.org, hechtb@...glemail.com,
lars@...afoo.de, b32955@...escale.com, leiwen@...vell.com,
linux@....linux.org.uk
Cc: Roland Stigge <stigge@...com.de>
Subject: [PATCH] MTD: LPC32xx SLC NAND driver: Add error handling to write function
This patch adds error handling to the lpc32xx_nand_write_page_syndrome()
function.
Signed-off-by: Roland Stigge <stigge@...com.de>
---
drivers/mtd/nand/lpc32xx_slc.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/drivers/mtd/nand/lpc32xx_slc.c b/drivers/mtd/nand/lpc32xx_slc.c
index 7e2e78d..b27b3b3 100644
--- a/drivers/mtd/nand/lpc32xx_slc.c
+++ b/drivers/mtd/nand/lpc32xx_slc.c
@@ -679,9 +679,12 @@ static int lpc32xx_nand_write_page_syndrome(struct mtd_info *mtd,
{
struct lpc32xx_nand_host *host = chip->priv;
u8 *pb = chip->oob_poi + chip->ecc.layout->eccpos[0];
+ int error;
/* Write data, calculate ECC on outbound data */
- lpc32xx_xfer(mtd, (u8 *)buf, chip->ecc.steps, 0);
+ error = lpc32xx_xfer(mtd, (u8 *)buf, chip->ecc.steps, 0);
+ if (error)
+ return error;
/*
* The calculated ECC needs some manual work done to it before
--
1.7.10.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists