mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 02:20:52 +07:00
ASoC: fsl: fsl_asrc: Check for clk_prepare_enable() error
clk_prepare_enable() may fail, so we should better check its return value and propagate it in the case of error. Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Acked-by: Nicolin Chen <nicoleotsuka@gmail.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
d770e558e2
commit
b1ade0f2af
@ -931,14 +931,29 @@ static int fsl_asrc_probe(struct platform_device *pdev)
|
||||
static int fsl_asrc_runtime_resume(struct device *dev)
|
||||
{
|
||||
struct fsl_asrc *asrc_priv = dev_get_drvdata(dev);
|
||||
int i;
|
||||
int i, ret;
|
||||
|
||||
clk_prepare_enable(asrc_priv->mem_clk);
|
||||
clk_prepare_enable(asrc_priv->ipg_clk);
|
||||
for (i = 0; i < ASRC_CLK_MAX_NUM; i++)
|
||||
clk_prepare_enable(asrc_priv->asrck_clk[i]);
|
||||
ret = clk_prepare_enable(asrc_priv->mem_clk);
|
||||
if (ret)
|
||||
return ret;
|
||||
ret = clk_prepare_enable(asrc_priv->ipg_clk);
|
||||
if (ret)
|
||||
goto disable_mem_clk;
|
||||
for (i = 0; i < ASRC_CLK_MAX_NUM; i++) {
|
||||
ret = clk_prepare_enable(asrc_priv->asrck_clk[i]);
|
||||
if (ret)
|
||||
goto disable_asrck_clk;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
disable_asrck_clk:
|
||||
for (i--; i >= 0; i--)
|
||||
clk_disable_unprepare(asrc_priv->asrck_clk[i]);
|
||||
clk_disable_unprepare(asrc_priv->ipg_clk);
|
||||
disable_mem_clk:
|
||||
clk_disable_unprepare(asrc_priv->mem_clk);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int fsl_asrc_runtime_suspend(struct device *dev)
|
||||
|
Loading…
Reference in New Issue
Block a user