mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
ASoC: fix incomplete error-handling in img_i2s_in_probe.
[ Upstream commit25bf943e4e
] Function "pm_runtime_get_sync()" is not handled by "pm_runtime_put()" if "PTR_ERR(rst) == -EPROBE_DEFER". Fix this issue by adding "pm_runtime_put()" into this error path. Fixes:f65bb92ca1
("ASoC: img-i2s-in: Add runtime PM") Signed-off-by: Qiushi Wu <wu000273@umn.edu> Link: https://lore.kernel.org/r/20200525055011.31925-1-wu000273@umn.edu Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
5578bf5ce0
commit
87b3dca712
@ -482,6 +482,7 @@ static int img_i2s_in_probe(struct platform_device *pdev)
|
||||
if (IS_ERR(rst)) {
|
||||
if (PTR_ERR(rst) == -EPROBE_DEFER) {
|
||||
ret = -EPROBE_DEFER;
|
||||
pm_runtime_put(&pdev->dev);
|
||||
goto err_suspend;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user