mirror of https://gitee.com/openkylin/linux.git
mmc: au1xmmc: fix error return code in au1xmmc_probe()
Fix to return a negative error code from the error handling case instead of 0, as done elsewhere in this function. Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
parent
2aa354650a
commit
ee9d19d42c
|
@ -1028,9 +1028,12 @@ static int au1xmmc_probe(struct platform_device *pdev)
|
||||||
host->clk = clk_get(&pdev->dev, ALCHEMY_PERIPH_CLK);
|
host->clk = clk_get(&pdev->dev, ALCHEMY_PERIPH_CLK);
|
||||||
if (IS_ERR(host->clk)) {
|
if (IS_ERR(host->clk)) {
|
||||||
dev_err(&pdev->dev, "cannot find clock\n");
|
dev_err(&pdev->dev, "cannot find clock\n");
|
||||||
|
ret = PTR_ERR(host->clk);
|
||||||
goto out_irq;
|
goto out_irq;
|
||||||
}
|
}
|
||||||
if (clk_prepare_enable(host->clk)) {
|
|
||||||
|
ret = clk_prepare_enable(host->clk);
|
||||||
|
if (ret) {
|
||||||
dev_err(&pdev->dev, "cannot enable clock\n");
|
dev_err(&pdev->dev, "cannot enable clock\n");
|
||||||
goto out_clk;
|
goto out_clk;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue