提交 6a4a34a4 编写于 作者: K Kevin Hao 提交者: Ulf Hansson

mmc: sdhci-dove: remove the unneeded error check

The function clk_disable_unprepare() already take care of either error
or null cases.
Signed-off-by: NKevin Hao <haokexin@gmail.com>
Signed-off-by: NUlf Hansson <ulf.hansson@linaro.org>
上级 b36ac1b4
...@@ -117,7 +117,6 @@ static int sdhci_dove_probe(struct platform_device *pdev) ...@@ -117,7 +117,6 @@ static int sdhci_dove_probe(struct platform_device *pdev)
return 0; return 0;
err_sdhci_add: err_sdhci_add:
if (!IS_ERR(priv->clk))
clk_disable_unprepare(priv->clk); clk_disable_unprepare(priv->clk);
sdhci_pltfm_free(pdev); sdhci_pltfm_free(pdev);
return ret; return ret;
...@@ -131,7 +130,6 @@ static int sdhci_dove_remove(struct platform_device *pdev) ...@@ -131,7 +130,6 @@ static int sdhci_dove_remove(struct platform_device *pdev)
sdhci_pltfm_unregister(pdev); sdhci_pltfm_unregister(pdev);
if (!IS_ERR(priv->clk))
clk_disable_unprepare(priv->clk); clk_disable_unprepare(priv->clk);
return 0; return 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册