diff options
author | Jouni Högander <jouni.hogander@intel.com> | 2023-09-13 13:04:30 +0300 |
---|---|---|
committer | Jouni Högander <jouni.hogander@intel.com> | 2023-09-18 08:42:58 +0300 |
commit | 8874288c803fba7fff4d441464cac3a513364fd1 (patch) | |
tree | a9e4795fb8b3abd000bf70508f2e7c8a13b8cdff /drivers/gpu/drm/i915/i915_gpu_error.c | |
parent | 93caca6a04b1d2ff8c7d817cccaece08f0f08a2f (diff) | |
download | linux-8874288c803fba7fff4d441464cac3a513364fd1.tar.gz linux-8874288c803fba7fff4d441464cac3a513364fd1.tar.bz2 linux-8874288c803fba7fff4d441464cac3a513364fd1.zip |
drm/i915: Remove runtime suspended boolean from intel_runtime_pm struct
It's not necessary to carry separate suspended status information in
intel_runtime_pm struct as this information is already in underlying device
structure. Remove it and use pm_runtime_suspended() to obtain suspended
status information when needed.
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Imre Deak <imre.deak@intel.com>
Signed-off-by: Jouni Högander <jouni.hogander@intel.com>
Acked-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230913100430.3433969-1-jouni.hogander@intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/i915_gpu_error.c')
-rw-r--r-- | drivers/gpu/drm/i915/i915_gpu_error.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/i915_gpu_error.c b/drivers/gpu/drm/i915/i915_gpu_error.c index 4008bb09fdb5..a60bab177c55 100644 --- a/drivers/gpu/drm/i915/i915_gpu_error.c +++ b/drivers/gpu/drm/i915/i915_gpu_error.c @@ -1972,7 +1972,7 @@ static void capture_gen(struct i915_gpu_coredump *error) struct drm_i915_private *i915 = error->i915; error->wakelock = atomic_read(&i915->runtime_pm.wakeref_count); - error->suspended = i915->runtime_pm.suspended; + error->suspended = pm_runtime_suspended(i915->drm.dev); error->iommu = i915_vtd_active(i915); error->reset_count = i915_reset_count(&i915->gpu_error); |