]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
ASoC: img: Fix PM reference leak in img_i2s_in_probe()
authorYufen Yu <yuyufen@huawei.com>
Mon, 24 May 2021 09:35:21 +0000 (05:35 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 20 Jul 2021 14:02:08 +0000 (16:02 +0200)
commit67fc8e84e0aeec7bb8207cd5a01651b1643773b4
tree19da2b2248aedc006c6847ffba12d34b4abe2301
parent2f26564eb712a900373891802f52021286bef00b
ASoC: img: Fix PM reference leak in img_i2s_in_probe()

[ Upstream commit 81aad47278539f02de808bcc8251fed0ad3d6f55 ]

pm_runtime_get_sync will increment pm usage counter even it failed.
Forgetting to putting operation will result in reference leak here.
Fix it by replacing it with pm_runtime_resume_and_get to keep usage
counter balanced.

Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Yufen Yu <yuyufen@huawei.com>
Link: https://lore.kernel.org/r/20210524093521.612176-1-yuyufen@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
sound/soc/img/img-i2s-in.c