From 49464bb6977aa87e3edda2f5d011fbaafc5e1cf3 Mon Sep 17 00:00:00 2001 From: Jani Nikula Date: Wed, 11 Mar 2026 16:18:15 +0200 Subject: [PATCH] drm/xe: rename intel_bo.c to xe_display_bo.c Follow the xe_ prefixed file naming in xe. With xe_bo.[ch] already being a thing in xe core, use xe_display_bo.c. Reviewed-by: Suraj Kandpal Link: https://patch.msgid.link/2f73eda5117462407f12113ce096496282ee3fcc.1773238670.git.jani.nikula@intel.com Signed-off-by: Jani Nikula --- drivers/gpu/drm/xe/Makefile | 2 +- drivers/gpu/drm/xe/display/{intel_bo.c => xe_display_bo.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename drivers/gpu/drm/xe/display/{intel_bo.c => xe_display_bo.c} (100%) diff --git a/drivers/gpu/drm/xe/Makefile b/drivers/gpu/drm/xe/Makefile index 7c5bb6e8fb8d..ac8c1f2cb7f9 100644 --- a/drivers/gpu/drm/xe/Makefile +++ b/drivers/gpu/drm/xe/Makefile @@ -209,10 +209,10 @@ $(obj)/i915-display/%.o: $(srctree)/drivers/gpu/drm/i915/display/%.c FORCE # Display code specific to xe xe-$(CONFIG_DRM_XE_DISPLAY) += \ - display/intel_bo.o \ display/intel_fb_bo.o \ display/intel_fbdev_fb.o \ display/xe_display.o \ + display/xe_display_bo.o \ display/xe_display_pcode.o \ display/xe_display_rpm.o \ display/xe_display_wa.o \ diff --git a/drivers/gpu/drm/xe/display/intel_bo.c b/drivers/gpu/drm/xe/display/xe_display_bo.c similarity index 100% rename from drivers/gpu/drm/xe/display/intel_bo.c rename to drivers/gpu/drm/xe/display/xe_display_bo.c