Commit ad5678ec authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Boris Brezillon

mtd: nand: fsmc: return error code of nand_scan_ident/tail() on error

The nand_scan_ident/tail() returns an appropriate error value when
it fails.  Use it instead of the fixed error code -ENXIO.
Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: default avatarMarek Vasut <marek.vasut@gmail.com>
Signed-off-by: default avatarBoris Brezillon <boris.brezillon@free-electrons.com>
parent c25cca03
...@@ -926,8 +926,8 @@ static int __init fsmc_nand_probe(struct platform_device *pdev) ...@@ -926,8 +926,8 @@ static int __init fsmc_nand_probe(struct platform_device *pdev)
/* /*
* Scan to find existence of the device * Scan to find existence of the device
*/ */
if (nand_scan_ident(mtd, 1, NULL)) { ret = nand_scan_ident(mtd, 1, NULL);
ret = -ENXIO; if (ret) {
dev_err(&pdev->dev, "No NAND Device found!\n"); dev_err(&pdev->dev, "No NAND Device found!\n");
goto err_scan_ident; goto err_scan_ident;
} }
...@@ -992,10 +992,9 @@ static int __init fsmc_nand_probe(struct platform_device *pdev) ...@@ -992,10 +992,9 @@ static int __init fsmc_nand_probe(struct platform_device *pdev)
} }
/* Second stage of scan to fill MTD data-structures */ /* Second stage of scan to fill MTD data-structures */
if (nand_scan_tail(mtd)) { ret = nand_scan_tail(mtd);
ret = -ENXIO; if (ret)
goto err_probe; goto err_probe;
}
/* /*
* The partition information can is accessed by (in the same precedence) * The partition information can is accessed by (in the same precedence)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment