Commit 133fe8fa authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Boris Brezillon

mtd: nand: pxa3xx: 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: 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 c8cae355
...@@ -1680,8 +1680,9 @@ static int pxa3xx_nand_scan(struct mtd_info *mtd) ...@@ -1680,8 +1680,9 @@ static int pxa3xx_nand_scan(struct mtd_info *mtd)
chip->ecc.strength = pdata->ecc_strength; chip->ecc.strength = pdata->ecc_strength;
chip->ecc.size = pdata->ecc_step_size; chip->ecc.size = pdata->ecc_step_size;
if (nand_scan_ident(mtd, 1, NULL)) ret = nand_scan_ident(mtd, 1, NULL);
return -ENODEV; if (ret)
return ret;
if (!pdata->keep_config) { if (!pdata->keep_config) {
ret = pxa3xx_nand_init(host); ret = pxa3xx_nand_init(host);
......
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