From: Ville Syrjälä Date: Tue, 8 Mar 2022 17:32:25 +0000 (+0200) Subject: drm/i915: Remove leftover cnl SAGV block time X-Git-Tag: v5.19-rc1~153^2~20^2~162 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=759b30f70597562ebfa60b516c4c5cbfc2f432dc;p=thirdparty%2Fkernel%2Flinux.git drm/i915: Remove leftover cnl SAGV block time GLK doesn't support SAGV, so with CNL gone there is no use for having a DISPLAY_VER==10 SAGV block time in the code. Signed-off-by: Ville Syrjälä Link: https://patchwork.freedesktop.org/patch/msgid/20220308173230.4182-2-ville.syrjala@linux.intel.com Reviewed-by: Vinod Govindapillai --- diff --git a/drivers/gpu/drm/i915/intel_pm.c b/drivers/gpu/drm/i915/intel_pm.c index f70eb10ab24d1..8ee31c9590a7f 100644 --- a/drivers/gpu/drm/i915/intel_pm.c +++ b/drivers/gpu/drm/i915/intel_pm.c @@ -3689,9 +3689,6 @@ skl_setup_sagv_block_time(struct drm_i915_private *dev_priv) } else if (DISPLAY_VER(dev_priv) == 11) { dev_priv->sagv_block_time_us = 10; return; - } else if (DISPLAY_VER(dev_priv) == 10) { - dev_priv->sagv_block_time_us = 20; - return; } else if (DISPLAY_VER(dev_priv) == 9) { dev_priv->sagv_block_time_us = 30; return;