[PATCH 3/4 v3] mtd: onenand: samsung: Propagate the error returned by 'onenand_scan()'

From: Christophe JAILLET
Date: Thu Dec 14 2017 - 01:10:22 EST


Propagate the error code returned by 'onenand_scan()' instead of a
hard-coded -EFAULT.

Signed-off-by: Christophe JAILLET <christophe.jaillet@xxxxxxxxxx>
---
Cross-compiled tested-only

v3: new patch in the serie
---
drivers/mtd/onenand/samsung.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/mtd/onenand/samsung.c b/drivers/mtd/onenand/samsung.c
index b5497c5a35f1..206aa90140c9 100644
--- a/drivers/mtd/onenand/samsung.c
+++ b/drivers/mtd/onenand/samsung.c
@@ -921,8 +921,9 @@ static int s3c_onenand_probe(struct platform_device *pdev)
}
}

- if (onenand_scan(mtd, 1))
- return -EFAULT;
+ err = onenand_scan(mtd, 1);
+ if (err)
+ return err;

if (onenand->type != TYPE_S5PC110) {
/* S3C doesn't handle subpage write */
--
2.14.1