From: Masahiro Yamada Date: Fri, 4 Nov 2016 10:43:07 +0000 (+0900) Subject: mtd: nand: hisi504: return error code of nand_scan_ident() on error X-Git-Tag: v5.15~12218^2~4^2~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c8cae35572b6132e7c3fbb708ebee4b84e29bbed;p=platform%2Fkernel%2Flinux-starfive.git mtd: nand: hisi504: return error code of nand_scan_ident() on error The nand_scan_ident() returns an appropriate error value when it fails. Use it instead of the fixed error code -ENODEV. (This driver is already doing so for nand_scan_tail().) Signed-off-by: Masahiro Yamada Reviewed-by: Marek Vasut Signed-off-by: Boris Brezillon --- diff --git a/drivers/mtd/nand/hisi504_nand.c b/drivers/mtd/nand/hisi504_nand.c index 9432546..e40364e 100644 --- a/drivers/mtd/nand/hisi504_nand.c +++ b/drivers/mtd/nand/hisi504_nand.c @@ -774,10 +774,8 @@ static int hisi_nfc_probe(struct platform_device *pdev) } ret = nand_scan_ident(mtd, max_chips, NULL); - if (ret) { - ret = -ENODEV; + if (ret) goto err_res; - } host->buffer = dmam_alloc_coherent(dev, mtd->writesize + mtd->oobsize, &host->dma_buffer, GFP_KERNEL);