drm/xe: drop display/ subdir from include directories
authorJani Nikula <jani.nikula@intel.com>
Mon, 22 Jan 2024 10:14:28 +0000 (12:14 +0200)
committerJani Nikula <jani.nikula@intel.com>
Wed, 31 Jan 2024 12:59:07 +0000 (14:59 +0200)
There are very few places that need to include anything from under
display/. Require the display/ prefix in #include directives, and drop
the subdirectory from the header search path.

Sort the include lists while at it.

Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Acked-by: Lucas De Marchi <lucas.demarchi@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240122101428.2683468-2-jani.nikula@intel.com
drivers/gpu/drm/xe/Makefile
drivers/gpu/drm/xe/xe_device.c
drivers/gpu/drm/xe/xe_irq.c
drivers/gpu/drm/xe/xe_pci.c
drivers/gpu/drm/xe/xe_pm.c

index f017a59bf01f36b8deefacf3df7b0e67a005d201..c531210695db0a775320d33da59efbcbfcca1245 100644 (file)
@@ -165,7 +165,6 @@ xe-$(CONFIG_DRM_XE_KUNIT_TEST) += \
 subdir-ccflags-$(CONFIG_DRM_XE_DISPLAY) += \
        -I$(srctree)/$(src)/display/ext \
        -I$(srctree)/$(src)/compat-i915-headers \
-       -I$(srctree)/drivers/gpu/drm/xe/display/ \
        -I$(srctree)/drivers/gpu/drm/i915/display/ \
        -Ddrm_i915_gem_object=xe_bo \
        -Ddrm_i915_private=xe_device
index 8e8567e06f0bc1766a68a487dd3d4f8541fded82..5b84d73055202909fbd51bc4995ded275bb9311f 100644 (file)
 #include <drm/drm_print.h>
 #include <drm/xe_drm.h>
 
+#include "display/xe_display.h"
 #include "regs/xe_gt_regs.h"
 #include "regs/xe_regs.h"
 #include "xe_bo.h"
 #include "xe_debugfs.h"
-#include "xe_display.h"
 #include "xe_dma_buf.h"
 #include "xe_drm_client.h"
 #include "xe_drv.h"
-#include "xe_exec_queue.h"
 #include "xe_exec.h"
+#include "xe_exec_queue.h"
 #include "xe_ggtt.h"
 #include "xe_gsc_proxy.h"
 #include "xe_gt.h"
 #include "xe_gt_mcr.h"
+#include "xe_hwmon.h"
 #include "xe_irq.h"
 #include "xe_memirq.h"
 #include "xe_mmio.h"
@@ -43,7 +44,6 @@
 #include "xe_ttm_sys_mgr.h"
 #include "xe_vm.h"
 #include "xe_wait_user_fence.h"
-#include "xe_hwmon.h"
 
 #ifdef CONFIG_LOCKDEP
 struct lockdep_map xe_device_mem_access_lockdep_map = {
index 2fd8cc26fc9fe09a3f6696d943be1ccd28e6299d..d31e87de5a1c849cd87cb1007015cad3ea52396c 100644 (file)
@@ -9,10 +9,10 @@
 
 #include <drm/drm_managed.h>
 
+#include "display/xe_display.h"
 #include "regs/xe_gt_regs.h"
 #include "regs/xe_regs.h"
 #include "xe_device.h"
-#include "xe_display.h"
 #include "xe_drv.h"
 #include "xe_gsc_proxy.h"
 #include "xe_gt.h"
index 4b7999b24ff75401335c32a7a0d1937387a7289d..557f2d88a8c1ed7bce5698433be1f0824121be5e 100644 (file)
@@ -15,9 +15,9 @@
 #include <drm/drm_drv.h>
 #include <drm/xe_pciids.h>
 
+#include "display/xe_display.h"
 #include "regs/xe_gt_regs.h"
 #include "xe_device.h"
-#include "xe_display.h"
 #include "xe_drv.h"
 #include "xe_gt.h"
 #include "xe_macros.h"
index d5f219796d7ef2ee175a951a992beea32399c41e..4d3984ae4ff1210769a57577ddf610053735bff9 100644 (file)
 #include <drm/drm_managed.h>
 #include <drm/ttm/ttm_placement.h>
 
+#include "display/xe_display.h"
 #include "xe_bo.h"
 #include "xe_bo_evict.h"
 #include "xe_device.h"
 #include "xe_device_sysfs.h"
-#include "xe_display.h"
 #include "xe_ggtt.h"
 #include "xe_gt.h"
 #include "xe_guc.h"