]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
drm/i915/fbc: Remove pointless "stride is multiple of 64 bytes" check
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Tue, 3 Oct 2023 19:42:56 +0000 (22:42 +0300)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Thu, 5 Oct 2023 10:25:36 +0000 (13:25 +0300)
Plane stride is always a multiple of 64 bytes. Remove the
pointless check that really doesn't have anything to do
with FBC.

Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20231003194256.28569-6-ville.syrjala@linux.intel.com
Reviewed-by: Vinod Govindapillai <vinod.govindapillai@intel.com>
drivers/gpu/drm/i915/display/intel_fbc.c

index 37f96a4d50f29b881572836286d0605cdfbc722f..4820d21cc942a0202d6b34317035b73f3d0a427c 100644 (file)
@@ -897,13 +897,6 @@ static bool icl_fbc_stride_is_valid(const struct intel_plane_state *plane_state)
 static bool stride_is_valid(const struct intel_plane_state *plane_state)
 {
        struct drm_i915_private *i915 = to_i915(plane_state->uapi.plane->dev);
-       const struct drm_framebuffer *fb = plane_state->hw.fb;
-       unsigned int stride = intel_fbc_plane_stride(plane_state) *
-               fb->format->cpp[0];
-
-       /* This should have been caught earlier. */
-       if (drm_WARN_ON_ONCE(&i915->drm, (stride & (64 - 1)) != 0))
-               return false;
 
        if (DISPLAY_VER(i915) >= 11)
                return icl_fbc_stride_is_valid(plane_state);