mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
ASoC: hisilicon: fix missing clk_disable_unprepare() on error in hi6210_i2s_startup()
[ Upstream commit375904e393
] After calling clk_prepare_enable(), clk_disable_unprepare() need be called when calling clk_set_rate() failed. Fixes:0bf750f4cb
("ASoC: hisilicon: Add hi6210 i2s audio driver") Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Yang Yingliang <yangyingliang@huawei.com> Link: https://lore.kernel.org/r/20210518044514.607010-1-yangyingliang@huawei.com Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
51ef21934d
commit
e784b66299
@ -110,18 +110,15 @@ static int hi6210_i2s_startup(struct snd_pcm_substream *substream,
|
||||
|
||||
for (n = 0; n < i2s->clocks; n++) {
|
||||
ret = clk_prepare_enable(i2s->clk[n]);
|
||||
if (ret) {
|
||||
while (n--)
|
||||
clk_disable_unprepare(i2s->clk[n]);
|
||||
return ret;
|
||||
}
|
||||
if (ret)
|
||||
goto err_unprepare_clk;
|
||||
}
|
||||
|
||||
ret = clk_set_rate(i2s->clk[CLK_I2S_BASE], 49152000);
|
||||
if (ret) {
|
||||
dev_err(i2s->dev, "%s: setting 49.152MHz base rate failed %d\n",
|
||||
__func__, ret);
|
||||
return ret;
|
||||
goto err_unprepare_clk;
|
||||
}
|
||||
|
||||
/* enable clock before frequency division */
|
||||
@ -173,6 +170,11 @@ static int hi6210_i2s_startup(struct snd_pcm_substream *substream,
|
||||
hi6210_write_reg(i2s, HII2S_SW_RST_N, val);
|
||||
|
||||
return 0;
|
||||
|
||||
err_unprepare_clk:
|
||||
while (n--)
|
||||
clk_disable_unprepare(i2s->clk[n]);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static void hi6210_i2s_shutdown(struct snd_pcm_substream *substream,
|
||||
|
Loading…
Reference in New Issue
Block a user