提交 be051bf2 编写于 作者: M Miquel Raynal 提交者: Boris Brezillon

mtd: rawnand: mxc: fix probe function error path

An error after nand_scan_tail() should trigger a nand_cleanup().
The helper mtd_device_parse_register() returns an error code that should
be checked and nand_cleanup() called accordingly.
Signed-off-by: NMiquel Raynal <miquel.raynal@bootlin.com>
Signed-off-by: NBoris Brezillon <boris.brezillon@bootlin.com>
上级 4e5d1d90
...@@ -1911,15 +1911,18 @@ static int mxcnd_probe(struct platform_device *pdev) ...@@ -1911,15 +1911,18 @@ static int mxcnd_probe(struct platform_device *pdev)
goto escan; goto escan;
/* Register the partitions */ /* Register the partitions */
mtd_device_parse_register(mtd, part_probes, err = mtd_device_parse_register(mtd, part_probes, NULL,
NULL,
host->pdata.parts, host->pdata.parts,
host->pdata.nr_parts); host->pdata.nr_parts);
if (err)
goto cleanup_nand;
platform_set_drvdata(pdev, host); platform_set_drvdata(pdev, host);
return 0; return 0;
cleanup_nand:
nand_cleanup(this);
escan: escan:
if (host->clk_act) if (host->clk_act)
clk_disable_unprepare(host->clk); clk_disable_unprepare(host->clk);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册