From: Pierre-Louis Bossart Date: Tue, 26 Apr 2022 18:41:03 +0000 (-0500) Subject: ASoC: SOF: control: use pm_runtime_resume_and_get() X-Git-Tag: v6.1-rc5~574^2~68^2~79^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bf0736e5d4644eb9238a1136625e09126721d2e3;p=platform%2Fkernel%2Flinux-starfive.git ASoC: SOF: control: use pm_runtime_resume_and_get() Use pm_runtime_resume_and_get() to replace the pm_runtime_get_sync() and pm_runtime_put_noidle() pattern. No functional changes. Signed-off-by: Pierre-Louis Bossart Reviewed-by: Péter Ujfalusi Reviewed-by: Bard Liao Link: https://lore.kernel.org/r/20220426184106.102636-2-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown --- diff --git a/sound/soc/sof/control.c b/sound/soc/sof/control.c index 3b5718a..e0e9efd 100644 --- a/sound/soc/sof/control.c +++ b/sound/soc/sof/control.c @@ -187,10 +187,9 @@ int snd_sof_bytes_ext_volatile_get(struct snd_kcontrol *kcontrol, unsigned int _ const struct sof_ipc_tplg_ops *tplg_ops = sdev->ipc->ops->tplg; int ret, err; - ret = pm_runtime_get_sync(scomp->dev); + ret = pm_runtime_resume_and_get(scomp->dev); if (ret < 0 && ret != -EACCES) { dev_err_ratelimited(scomp->dev, "%s: failed to resume %d\n", __func__, ret); - pm_runtime_put_noidle(scomp->dev); return ret; }