From d1b0597213d714e0cbb580416b1beff4b49a771e Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Mon, 6 Oct 2025 16:39:22 -0700 Subject: [PATCH] brw: Drop compiler/ from brw includes They're in the current directory/module, just include them. Reviewed-by: Dylan Baker Reviewed-by: Alyssa Rosenzweig Part-of: --- src/intel/compiler/brw_asm_internal.h | 10 +++++----- src/intel/compiler/brw_asm_tool.c | 2 +- src/intel/compiler/brw_disasm_tool.c | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/intel/compiler/brw_asm_internal.h b/src/intel/compiler/brw_asm_internal.h index e4ddd503a2d..ce02fa879c8 100644 --- a/src/intel/compiler/brw_asm_internal.h +++ b/src/intel/compiler/brw_asm_internal.h @@ -11,11 +11,11 @@ #include #include -#include "compiler/brw_reg.h" -#include "compiler/brw_reg_type.h" -#include "compiler/brw_eu_defines.h" -#include "compiler/brw_eu_inst.h" -#include "compiler/brw_eu.h" +#include "brw_reg.h" +#include "brw_reg_type.h" +#include "brw_eu_defines.h" +#include "brw_eu_inst.h" +#include "brw_eu.h" #include "dev/intel_device_info.h" #include "util/list.h" diff --git a/src/intel/compiler/brw_asm_tool.c b/src/intel/compiler/brw_asm_tool.c index 0950c3e60a2..3716e261d42 100644 --- a/src/intel/compiler/brw_asm_tool.c +++ b/src/intel/compiler/brw_asm_tool.c @@ -27,7 +27,7 @@ #include #include "util/ralloc.h" -#include "compiler/brw_eu_inst.h" +#include "brw_eu_inst.h" #include "dev/intel_device_info.h" #include "brw_asm.h" diff --git a/src/intel/compiler/brw_disasm_tool.c b/src/intel/compiler/brw_disasm_tool.c index e7bab0107c8..95e6e13a134 100644 --- a/src/intel/compiler/brw_disasm_tool.c +++ b/src/intel/compiler/brw_disasm_tool.c @@ -26,8 +26,8 @@ #include #include -#include "compiler/brw_disasm.h" -#include "compiler/brw_isa_info.h" +#include "brw_disasm.h" +#include "brw_isa_info.h" #include "dev/intel_device_info.h" #include "util/u_dynarray.h"