From: Arvind Yadav Date: Tue, 25 Jul 2017 10:15:18 +0000 (+0530) Subject: ASoC: sun4i-spdif: Handle return value of clk_prepare_enable. X-Git-Tag: v4.14-rc4~21^2~23^2~3^6~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3643e9172649f97f2e6301582890202abcc0f97e;p=platform%2Fkernel%2Flinux-rpi.git ASoC: sun4i-spdif: Handle return value of clk_prepare_enable. clk_prepare_enable() can fail here and we must check its return value. Signed-off-by: Arvind Yadav Signed-off-by: Mark Brown --- diff --git a/sound/soc/sunxi/sun4i-spdif.c b/sound/soc/sunxi/sun4i-spdif.c index c49f375..b4af4aa 100644 --- a/sound/soc/sunxi/sun4i-spdif.c +++ b/sound/soc/sunxi/sun4i-spdif.c @@ -458,11 +458,16 @@ static int sun4i_spdif_runtime_suspend(struct device *dev) static int sun4i_spdif_runtime_resume(struct device *dev) { struct sun4i_spdif_dev *host = dev_get_drvdata(dev); + int ret; - clk_prepare_enable(host->spdif_clk); - clk_prepare_enable(host->apb_clk); + ret = clk_prepare_enable(host->spdif_clk); + if (ret) + return ret; + ret = clk_prepare_enable(host->apb_clk); + if (ret) + clk_disable_unprepare(host->spdif_clk); - return 0; + return ret; } static int sun4i_spdif_probe(struct platform_device *pdev)