aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArvind Yadav <arvind.yadav.cs@gmail.com>2017-07-25 06:15:18 -0400
committerMark Brown <broonie@kernel.org>2017-07-26 08:01:33 -0400
commit3643e9172649f97f2e6301582890202abcc0f97e (patch)
treef4625d614ae24375aae88fc3637c1e5aeffa0be2
parent72bfa2117bdb4bb5b07dd5ed833ff3c318fc70b6 (diff)
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 <arvind.yadav.cs@gmail.com> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--sound/soc/sunxi/sun4i-spdif.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/sound/soc/sunxi/sun4i-spdif.c b/sound/soc/sunxi/sun4i-spdif.c
index c49f3757b686..b4af4aabead1 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)
458static int sun4i_spdif_runtime_resume(struct device *dev) 458static int sun4i_spdif_runtime_resume(struct device *dev)
459{ 459{
460 struct sun4i_spdif_dev *host = dev_get_drvdata(dev); 460 struct sun4i_spdif_dev *host = dev_get_drvdata(dev);
461 int ret;
461 462
462 clk_prepare_enable(host->spdif_clk); 463 ret = clk_prepare_enable(host->spdif_clk);
463 clk_prepare_enable(host->apb_clk); 464 if (ret)
465 return ret;
466 ret = clk_prepare_enable(host->apb_clk);
467 if (ret)
468 clk_disable_unprepare(host->spdif_clk);
464 469
465 return 0; 470 return ret;
466} 471}
467 472
468static int sun4i_spdif_probe(struct platform_device *pdev) 473static int sun4i_spdif_probe(struct platform_device *pdev)