Re: [PATCH 1/9] drm/i915: Split gen2 vs. gen3 .max_stride()

2024-05-06 Thread Jani Nikula
On Mon, 06 May 2024, Ville Syrjala wrote: > From: Ville Syrjälä > > Plane .max_stride() is alreayd a vfunc so having one made *already > up of two branches based on the display version is silly. > Split i9xx_plane_max_stride() into gen2 vs. gen3 variants > so that we get rid of said check.

[PATCH 1/9] drm/i915: Split gen2 vs. gen3 .max_stride()

2024-05-06 Thread Ville Syrjala
From: Ville Syrjälä Plane .max_stride() is alreayd a vfunc so having one made up of two branches based on the display version is silly. Split i9xx_plane_max_stride() into gen2 vs. gen3 variants so that we get rid of said check. Signed-off-by: Ville Syrjälä ---