diff options
author | 2022-05-05 12:35:24 -0700 | |
---|---|---|
committer | 2022-05-06 09:28:21 -0700 | |
commit | b15a7357a84f091fde8ce35bf2fd494150ad4bd0 (patch) | |
tree | 0a20ba6550fdb6bbaa4918be2d011416850da9f5 /drivers/gpu/drm/i915/intel_device_info.h | |
parent | drm/i915: Drop has_dp_mst from device info (diff) | |
download | linux-dev-b15a7357a84f091fde8ce35bf2fd494150ad4bd0.tar.xz linux-dev-b15a7357a84f091fde8ce35bf2fd494150ad4bd0.zip |
drm/i915: Drop has_psr from device info
No need to have this parameter in intel_device_info struct
as all platforms with display version 9 or newer has this feature.
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-7-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 ffea8bff4b76..8702d1ae8fc0 100644 --- a/drivers/gpu/drm/i915/intel_device_info.h +++ b/drivers/gpu/drm/i915/intel_device_info.h @@ -172,7 +172,6 @@ enum intel_ppgtt_type { func(has_ipc); \ func(has_modular_fia); \ func(has_overlay); \ - func(has_psr); \ func(has_psr_hw_tracking); \ func(overlay_needs_physical); \ func(supports_tv); |