Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+2 -2
+2 -2
drivers/gpu/drm/i915/display/intel_overlay.c
··· 1456 1456 struct intel_overlay *overlay, 1457 1457 bool needs_physical) 1458 1458 { 1459 - struct drm_i915_private *dev_priv = to_i915(drm); 1459 + struct drm_i915_private *i915 = to_i915(drm); 1460 1460 struct intel_engine_cs *engine; 1461 1461 1462 - engine = to_gt(dev_priv)->engine[RCS0]; 1462 + engine = to_gt(i915)->engine[RCS0]; 1463 1463 if (!engine || !engine->kernel_context) 1464 1464 return -ENOENT; 1465 1465