diff mbox series

[RESEND] ASoC: SOF: sof-client-ipc-flood-test: use pm_runtime_resume_and_get()

Message ID 20220517173715.468894-1-pierre-louis.bossart@linux.intel.com (mailing list archive)
State Accepted
Commit b1378b259c0c0300cf62dd7117bf550edce0f9cc
Headers show
Series [RESEND] ASoC: SOF: sof-client-ipc-flood-test: use pm_runtime_resume_and_get() | expand

Commit Message

Pierre-Louis Bossart May 17, 2022, 5:37 p.m. UTC
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 <pierre-louis.bossart@linux.intel.com>
Reviewed-by: Péter Ujfalusi <peter.ujfalusi@linux.intel.com>
Reviewed-by: Bard Liao <yung-chuan.liao@linux.intel.com>
---

This patch was sent as part of the "[PATCH 0/4] ASoC: SOF: use
pm_runtime_resume_and_get()" series, but somehow not applied. The
other 3 patches were selected.

 sound/soc/sof/sof-client-ipc-flood-test.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

Comments

Mark Brown May 20, 2022, 11:18 a.m. UTC | #1
On Tue, 17 May 2022 12:37:15 -0500, Pierre-Louis Bossart wrote:
> Use pm_runtime_resume_and_get() to replace the pm_runtime_get_sync() and
> pm_runtime_put_noidle() pattern.
> 
> No functional changes.
> 
> 

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next

Thanks!

[1/1] ASoC: SOF: sof-client-ipc-flood-test: use pm_runtime_resume_and_get()
      commit: b1378b259c0c0300cf62dd7117bf550edce0f9cc

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark
diff mbox series

Patch

diff --git a/sound/soc/sof/sof-client-ipc-flood-test.c b/sound/soc/sof/sof-client-ipc-flood-test.c
index db3a052c5dd2b..4bdecd80248ac 100644
--- a/sound/soc/sof/sof-client-ipc-flood-test.c
+++ b/sound/soc/sof/sof-client-ipc-flood-test.c
@@ -217,10 +217,9 @@  static ssize_t sof_ipc_flood_dfs_write(struct file *file, const char __user *buf
 			ipc_count = MAX_IPC_FLOOD_COUNT;
 	}
 
-	ret = pm_runtime_get_sync(dev);
+	ret = pm_runtime_resume_and_get(dev);
 	if (ret < 0 && ret != -EACCES) {
 		dev_err_ratelimited(dev, "debugfs write failed to resume %d\n", ret);
-		pm_runtime_put_noidle(dev);
 		goto out;
 	}