diff options
author | Sakari Ailus <sakari.ailus@linux.intel.com> | 2025-07-04 10:54:56 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2025-07-04 19:28:19 +0100 |
commit | bbe5e3c433a34e7f7bc762c390abb38205f821c5 (patch) | |
tree | 2e700d40f5ae10a536d20769cfa97dc58f0b275e /sound/soc/codecs/wsa883x.c | |
parent | 9069141d1d9c585a20e43037c2f9c00d9d3fc9eb (diff) |
ASoC: codecs: Remove redundant pm_runtime_mark_last_busy() calls
pm_runtime_put_autosuspend(), pm_runtime_put_sync_autosuspend(),
pm_runtime_autosuspend() and pm_request_autosuspend() now include a call
to pm_runtime_mark_last_busy(). Remove the now-reduntant explicit call to
pm_runtime_mark_last_busy().
Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com>
Link: https://patch.msgid.link/20250704075456.3222642-1-sakari.ailus@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/wsa883x.c')
-rw-r--r-- | sound/soc/codecs/wsa883x.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/soc/codecs/wsa883x.c b/sound/soc/codecs/wsa883x.c index f04d99c66f33..12eaf21774f3 100644 --- a/sound/soc/codecs/wsa883x.c +++ b/sound/soc/codecs/wsa883x.c @@ -1491,7 +1491,6 @@ static int wsa883x_get_temp(struct wsa883x_priv *wsa883x, long *temp) ret = -EAGAIN; } out: - pm_runtime_mark_last_busy(wsa883x->dev); pm_runtime_put_autosuspend(wsa883x->dev); return ret; |