diff options
author | José Roberto de Souza <jose.souza@intel.com> | 2022-05-05 12:35:20 -0700 |
---|---|---|
committer | José Roberto de Souza <jose.souza@intel.com> | 2022-05-06 09:28:13 -0700 |
commit | 922abe4d19bd21b38298f3902674774b92a49293 (patch) | |
tree | 14336bd644e67fc0c9f9328ebfc0f80a683c819d /drivers/gpu/drm/i915/intel_device_info.h | |
parent | 218076abbcd647de46635d21331a34b814f90906 (diff) |
drm/i915: Drop has_reset_engine from device info
No need to have this parameter in intel_device_info struct
as all platforms with graphics version 7 or newer can reset engines.
As a side effect of the of removal this flag, it will not be printed
in dmesg during driver load anymore and developers will have to rely
on to check the macro and compare with platform being used and IP
versions of it.
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220505193524.276400-3-jose.souza@intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/intel_device_info.h')
-rw-r--r-- | drivers/gpu/drm/i915/intel_device_info.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_device_info.h b/drivers/gpu/drm/i915/intel_device_info.h index 68af6f89a366..53777e14fa85 100644 --- a/drivers/gpu/drm/i915/intel_device_info.h +++ b/drivers/gpu/drm/i915/intel_device_info.h @@ -137,7 +137,6 @@ enum intel_ppgtt_type { func(has_64k_pages); \ func(needs_compact_pt); \ func(gpu_reset_clobbers_display); \ - func(has_reset_engine); \ func(has_4tile); \ func(has_flat_ccs); \ func(has_global_mocs); \ |