From: Kevin Hao Date: Fri, 27 Feb 2015 07:47:25 +0000 (+0800) Subject: mmc: sdhci-dove: remove the unneeded error check X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=6a4a34a413d896d1efe5a582a3bb8e435da65c1a;p=deliverable%2Flinux.git 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: Kevin Hao Signed-off-by: Ulf Hansson --- diff --git a/drivers/mmc/host/sdhci-dove.c b/drivers/mmc/host/sdhci-dove.c index ca969d271a27..0a7aeb162497 100644 --- a/drivers/mmc/host/sdhci-dove.c +++ b/drivers/mmc/host/sdhci-dove.c @@ -117,8 +117,7 @@ static int sdhci_dove_probe(struct platform_device *pdev) return 0; err_sdhci_add: - if (!IS_ERR(priv->clk)) - clk_disable_unprepare(priv->clk); + clk_disable_unprepare(priv->clk); sdhci_pltfm_free(pdev); return ret; } @@ -131,8 +130,7 @@ static int sdhci_dove_remove(struct platform_device *pdev) sdhci_pltfm_unregister(pdev); - if (!IS_ERR(priv->clk)) - clk_disable_unprepare(priv->clk); + clk_disable_unprepare(priv->clk); return 0; }