From 47a32160eb2d5c2280ee3226e232628f7468e186 Mon Sep 17 00:00:00 2001 From: Anuj Phogat Date: Tue, 6 Apr 2021 10:25:46 -0700 Subject: [PATCH] intel: Rename brw_gen_enum.h to brw_gfx_ver_enum.h export SEARCH_PATH="src/intel src/gallium/drivers/iris src/mesa/drivers/dri/i965 grep -E "brw_gen_enum" -rIl $SEARCH_PATH | xargs sed -ie "s/brw_gen_enum\.h/brw_gfx_ver_enum\.h/g" Signed-off-by: Anuj Phogat Reviewed-by: Kenneth Graunke Part-of: --- src/intel/compiler/brw_eu.cpp | 2 +- src/intel/compiler/{brw_gen_enum.h => brw_gfx_ver_enum.h} | 0 src/intel/compiler/test_eu_compact.cpp | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename src/intel/compiler/{brw_gen_enum.h => brw_gfx_ver_enum.h} (100%) diff --git a/src/intel/compiler/brw_eu.cpp b/src/intel/compiler/brw_eu.cpp index 39e2bd6..a553729 100644 --- a/src/intel/compiler/brw_eu.cpp +++ b/src/intel/compiler/brw_eu.cpp @@ -35,7 +35,7 @@ #include "brw_eu_defines.h" #include "brw_eu.h" #include "brw_shader.h" -#include "brw_gen_enum.h" +#include "brw_gfx_ver_enum.h" #include "dev/intel_debug.h" #include "util/ralloc.h" diff --git a/src/intel/compiler/brw_gen_enum.h b/src/intel/compiler/brw_gfx_ver_enum.h similarity index 100% rename from src/intel/compiler/brw_gen_enum.h rename to src/intel/compiler/brw_gfx_ver_enum.h diff --git a/src/intel/compiler/test_eu_compact.cpp b/src/intel/compiler/test_eu_compact.cpp index d096f15..9eb9068 100644 --- a/src/intel/compiler/test_eu_compact.cpp +++ b/src/intel/compiler/test_eu_compact.cpp @@ -26,7 +26,7 @@ #include #include "util/ralloc.h" #include "brw_eu.h" -#include "brw_gen_enum.h" +#include "brw_gfx_ver_enum.h" static bool test_compact_instruction(struct brw_codegen *p, brw_inst src) -- 2.7.4