From 60f2c23684797173169a940abf9f1985537c156e Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Tue, 8 Mar 2016 13:05:47 +0100 Subject: imx-bbu-nand-fcb: Print error message when out of pebs Signed-off-by: Sascha Hauer --- common/imx-bbu-nand-fcb.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'common/imx-bbu-nand-fcb.c') diff --git a/common/imx-bbu-nand-fcb.c b/common/imx-bbu-nand-fcb.c index b3dea37067..04c6e6050c 100644 --- a/common/imx-bbu-nand-fcb.c +++ b/common/imx-bbu-nand-fcb.c @@ -420,8 +420,10 @@ static int imx_bbu_write_firmware(struct mtd_info *mtd, unsigned num, void *buf, while (len > 0) { int now = min(len, mtd->erasesize); - if (!num_blocks) + if (!num_blocks) { + pr_err("Out of good eraseblocks, cannot write firmware\n"); return -ENOSPC; + } pr_debug("writing %p peb %d, left 0x%08x\n", buf, block, len); -- cgit v1.2.3