drm/i915/overlay: s/dev_priv/i915/

Rename the one lingering 'dev_priv' variable to the
more modern 'i915' in the overlay code.

Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patch.msgid.link/20260226100738.29997-16-ville.syrjala@linux.intel.com
This commit is contained in:
Ville Syrjälä 2026-02-26 12:07:34 +02:00
parent ca0eacbb46
commit 805d0447b7

View File

@ -1456,10 +1456,10 @@ static int i915_overlay_setup(struct drm_device *drm,
struct intel_overlay *overlay,
bool needs_physical)
{
struct drm_i915_private *dev_priv = to_i915(drm);
struct drm_i915_private *i915 = to_i915(drm);
struct intel_engine_cs *engine;
engine = to_gt(dev_priv)->engine[RCS0];
engine = to_gt(i915)->engine[RCS0];
if (!engine || !engine->kernel_context)
return -ENOENT;