提交 e9d354b4 编写于 作者: M Masahiro Yamada 提交者: Boris Brezillon

mtd: nand: vf610: 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: NMasahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: NMarek Vasut <marek.vasut@gmail.com>
Signed-off-by: NBoris Brezillon <boris.brezillon@free-electrons.com>
上级 bd93a3af
...@@ -717,10 +717,9 @@ static int vf610_nfc_probe(struct platform_device *pdev) ...@@ -717,10 +717,9 @@ static int vf610_nfc_probe(struct platform_device *pdev)
vf610_nfc_preinit_controller(nfc); vf610_nfc_preinit_controller(nfc);
/* first scan to find the device and get the page size */ /* first scan to find the device and get the page size */
if (nand_scan_ident(mtd, 1, NULL)) { err = nand_scan_ident(mtd, 1, NULL);
err = -ENXIO; if (err)
goto error; goto error;
}
vf610_nfc_init_controller(nfc); vf610_nfc_init_controller(nfc);
...@@ -775,10 +774,9 @@ static int vf610_nfc_probe(struct platform_device *pdev) ...@@ -775,10 +774,9 @@ static int vf610_nfc_probe(struct platform_device *pdev)
} }
/* second phase scan */ /* second phase scan */
if (nand_scan_tail(mtd)) { err = nand_scan_tail(mtd);
err = -ENXIO; if (err)
goto error; goto error;
}
platform_set_drvdata(pdev, mtd); platform_set_drvdata(pdev, mtd);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册