diff options
| author | Lucas De Marchi <[email protected]> | 2024-03-20 06:03:01 +0000 |
|---|---|---|
| committer | Lucas De Marchi <[email protected]> | 2024-03-22 21:14:52 +0000 |
| commit | 48ba4a6dc3876f87090ccfe942c6d8325f49e11c (patch) | |
| tree | c8c8d5cb42fc00d5d541e5d1bb63438177b46ef1 /drivers/gpu/drm/i915/intel_uncore.c | |
| parent | drm/i915: Stop inheriting IP_VER(12, 50) (diff) | |
| download | kernel-48ba4a6dc3876f87090ccfe942c6d8325f49e11c.tar.gz kernel-48ba4a6dc3876f87090ccfe942c6d8325f49e11c.zip | |
drm/i915: Update IP_VER(12, 50)
With no platform using graphics/media IP_VER(12, 50), replace the
checks throughout the code with IP_VER(12, 55) so the code makes sense
by itself with no additional explanation of previous baggage.
Reviewed-by: Rodrigo Vivi <[email protected]>
Acked-by: Tvrtko Ursulin <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
Signed-off-by: Lucas De Marchi <[email protected]>
Diffstat (limited to 'drivers/gpu/drm/i915/intel_uncore.c')
| -rw-r--r-- | drivers/gpu/drm/i915/intel_uncore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_uncore.c b/drivers/gpu/drm/i915/intel_uncore.c index b525318dbd53..4d2b15dbe9ac 100644 --- a/drivers/gpu/drm/i915/intel_uncore.c +++ b/drivers/gpu/drm/i915/intel_uncore.c @@ -2714,7 +2714,7 @@ void intel_uncore_prune_engine_fw_domains(struct intel_uncore *uncore, * the forcewake domain if any of the other engines * in the same media slice are present. */ - if (GRAPHICS_VER_FULL(uncore->i915) >= IP_VER(12, 50) && i % 2 == 0) { + if (GRAPHICS_VER_FULL(uncore->i915) >= IP_VER(12, 55) && i % 2 == 0) { if ((i + 1 < I915_MAX_VCS) && HAS_ENGINE(gt, _VCS(i + 1))) continue; |
