提交 d2d2c0a0 编写于 作者: A Arvind Yadav 提交者: Mark Brown

ASoC: samsung: s3c2412: Handle return value of clk_prepare_enable.

clk_prepare_enable() can fail here and we must check its return value.
Signed-off-by: NArvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: NMark Brown <broonie@kernel.org>
上级 2d397c51
...@@ -71,7 +71,9 @@ static int s3c2412_i2s_probe(struct snd_soc_dai *dai) ...@@ -71,7 +71,9 @@ static int s3c2412_i2s_probe(struct snd_soc_dai *dai)
/* Set MPLL as the source for IIS CLK */ /* Set MPLL as the source for IIS CLK */
clk_set_parent(s3c2412_i2s.iis_cclk, clk_get(NULL, "mpll")); clk_set_parent(s3c2412_i2s.iis_cclk, clk_get(NULL, "mpll"));
clk_prepare_enable(s3c2412_i2s.iis_cclk); ret = clk_prepare_enable(s3c2412_i2s.iis_cclk);
if (ret)
return ret;
s3c2412_i2s.iis_cclk = s3c2412_i2s.iis_pclk; s3c2412_i2s.iis_cclk = s3c2412_i2s.iis_pclk;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册