]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
accel/ivpu: Remove redundant pm_runtime_mark_last_busy() calls
authorSakari Ailus <sakari.ailus@linux.intel.com>
Mon, 27 Oct 2025 13:39:56 +0000 (15:39 +0200)
committerMaciej Falkowski <maciej.falkowski@linux.intel.com>
Wed, 29 Oct 2025 12:49:04 +0000 (13:49 +0100)
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: Jacek Lawrynowicz <jacek.lawrynowicz@linux.intel.com>
Reviewed-by: Maciej Falkowski <maciej.falkowski@linux.intel.com>
Reviewed-by: Karol Wachowski <karol.wachowski@linux.intel.com>
Signed-off-by: Maciej Falkowski <maciej.falkowski@linux.intel.com>
Link: https://patch.msgid.link/20251027133956.393375-1-sakari.ailus@linux.intel.com
drivers/accel/ivpu/ivpu_job.c
drivers/accel/ivpu/ivpu_pm.c

index ba4535a75aa7dc427f14184477075fe1139595d4..4eb7287cd083641d1c65a215052a62f2ac57fcc8 100644 (file)
@@ -1114,6 +1114,5 @@ void ivpu_context_abort_work_fn(struct work_struct *work)
        mutex_unlock(&vdev->submitted_jobs_lock);
 
 runtime_put:
-       pm_runtime_mark_last_busy(vdev->drm.dev);
        pm_runtime_put_autosuspend(vdev->drm.dev);
 }
index 63c95307faa15978d2cee5245562939d80838d80..fe6f93af6ab01a776b595c23f9a28f307d62dbbb 100644 (file)
@@ -359,7 +359,6 @@ int ivpu_rpm_get(struct ivpu_device *vdev)
 
 void ivpu_rpm_put(struct ivpu_device *vdev)
 {
-       pm_runtime_mark_last_busy(vdev->drm.dev);
        pm_runtime_put_autosuspend(vdev->drm.dev);
 }
 
@@ -428,7 +427,6 @@ void ivpu_pm_enable(struct ivpu_device *vdev)
        struct device *dev = vdev->drm.dev;
 
        pm_runtime_allow(dev);
-       pm_runtime_mark_last_busy(dev);
        pm_runtime_put_autosuspend(dev);
 }