Unverified Commit 96e4abbd authored by Zhang Qilong's avatar Zhang Qilong Committed by Mark Brown
Browse files

ASoC: wm5102: Fix PM disable depth imbalance in wm5102_probe



The pm_runtime_enable will increase power disable depth. Thus
a pairing decrement is needed on the error handling path to
keep it balanced according to context. We fix it by calling
pm_runtime_disable when error returns.

Fixes:93e8791d ("ASoC: wm5102: Initial driver")

Signed-off-by: default avatarZhang Qilong <zhangqilong3@huawei.com>
Acked-by: default avatarCharles Keepax <ckeepax@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20220929150653.63845-4-zhangqilong3@huawei.com


Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 6ab646c9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2142,6 +2142,7 @@ static int wm5102_probe(struct platform_device *pdev)
	arizona_set_irq_wake(arizona, ARIZONA_IRQ_DSP_IRQ1, 0);
	arizona_free_irq(arizona, ARIZONA_IRQ_DSP_IRQ1, wm5102);
err_jack_codec_dev:
	pm_runtime_disable(&pdev->dev);
	arizona_jack_codec_dev_remove(&wm5102->core);

	return ret;