summaryrefslogtreecommitdiffstats
path: root/sound/soc/amd/vangogh
diff options
context:
space:
mode:
authorArun Gopal Kondaveeti <arungopal.kondaveeti@amd.com>2023-06-24 03:11:40 +0530
committerMark Brown <broonie@kernel.org>2023-06-23 11:07:39 +0100
commit154756319cc6f8b8b86241da02da6a8fcc6abd1f (patch)
treef335cb799c47a28dd911709a82f7ce92785b8895 /sound/soc/amd/vangogh
parentfcb66ee8d16aa0f88efcc9cb41083c0412e9db8a (diff)
downloadlinux-stable-154756319cc6f8b8b86241da02da6a8fcc6abd1f.tar.gz
linux-stable-154756319cc6f8b8b86241da02da6a8fcc6abd1f.tar.bz2
linux-stable-154756319cc6f8b8b86241da02da6a8fcc6abd1f.zip
ASoC: amd: update pm_runtime enable sequence
pm_runtime_allow() is not needed for ACP child platform devices. Replace pm_runtime_allow() with pm_runtime_mark_last_busy() & pm_runtime_set_active() in pm_runtime enable sequence for ACP child platform drivers. Signed-off-by: Arun Gopal <arungopal.kondaveeti@amd.com> Link: https://lore.kernel.org/r/Message-Id: <20230623214150.4058721-1-arungopal.kondaveeti@amd.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/amd/vangogh')
-rw-r--r--sound/soc/amd/vangogh/acp5x-pcm-dma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/soc/amd/vangogh/acp5x-pcm-dma.c b/sound/soc/amd/vangogh/acp5x-pcm-dma.c
index 29901ee4bfe3..587dec5bb33d 100644
--- a/sound/soc/amd/vangogh/acp5x-pcm-dma.c
+++ b/sound/soc/amd/vangogh/acp5x-pcm-dma.c
@@ -409,9 +409,9 @@ static int acp5x_audio_probe(struct platform_device *pdev)
}
pm_runtime_set_autosuspend_delay(&pdev->dev, 2000);
pm_runtime_use_autosuspend(&pdev->dev);
+ pm_runtime_mark_last_busy(&pdev->dev);
+ pm_runtime_set_active(&pdev->dev);
pm_runtime_enable(&pdev->dev);
- pm_runtime_allow(&pdev->dev);
-
return 0;
}