diff options
author | Sakari Ailus <sakari.ailus@linux.intel.com> | 2025-08-11 11:00:19 -0400 |
---|---|---|
committer | Hans Verkuil <hverkuil+cisco@kernel.org> | 2025-08-18 09:55:05 +0200 |
commit | da3fa08a89dc1cb33ed57d097239b9c7cd9e7a60 (patch) | |
tree | 866a11a60adf8c5f1887f294e66d630b9da2692b | |
parent | 0d58a72b66ec4c24128395e408348c2c84221605 (diff) |
media: rkvdec: 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>
Reviewed-by: Nicolas Dufresne <nicolas.dufresne@collabora.com>
Reviewed-by: Heiko Stuebner <heiko@sntech.de>
Signed-off-by: Nicolas Dufresne <nicolas.dufresne@collabora.com>
Signed-off-by: Hans Verkuil <hverkuil+cisco@kernel.org>
-rw-r--r-- | drivers/media/platform/rockchip/rkvdec/rkvdec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/media/platform/rockchip/rkvdec/rkvdec.c b/drivers/media/platform/rockchip/rkvdec/rkvdec.c index 35265e321203..d3b31f461194 100644 --- a/drivers/media/platform/rockchip/rkvdec/rkvdec.c +++ b/drivers/media/platform/rockchip/rkvdec/rkvdec.c @@ -765,7 +765,6 @@ static void rkvdec_job_finish(struct rkvdec_ctx *ctx, { struct rkvdec_dev *rkvdec = ctx->dev; - pm_runtime_mark_last_busy(rkvdec->dev); pm_runtime_put_autosuspend(rkvdec->dev); rkvdec_job_finish_no_pm(ctx, result); } |