summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/xe/xe_step.c
diff options
context:
space:
mode:
authorLucas De Marchi <lucas.demarchi@intel.com>2023-02-25 12:10:39 -0800
committerRodrigo Vivi <rodrigo.vivi@intel.com>2023-12-19 18:29:23 -0500
commit8cb49012ac171698b1253dea45e56c284e997d38 (patch)
tree490bb5be1accff65c22afbe8dc311a7be5e4a955 /drivers/gpu/drm/xe/xe_step.c
parent3457388fcd145d64e6852ca60084e822bec81e9f (diff)
downloadlinux-stable-8cb49012ac171698b1253dea45e56c284e997d38.tar.gz
linux-stable-8cb49012ac171698b1253dea45e56c284e997d38.tar.bz2
linux-stable-8cb49012ac171698b1253dea45e56c284e997d38.zip
drm/xe: Do not spread i915_reg_defs.h include
Reduce the use of i915_reg_defs.h so it can be encapsulated in a single place. 1) If it was being included by mistake, remove 2) If it was included for FIELD_GET()/FIELD_PREP()/GENMASK() and the like, just include <linux/bitfield.h> 3) If it was included to be able to define additional registers, move the registers to the relavant headers (regs/xe_regs.h or regs/xe_gt_regs.h) v2: - Squash commit fixing i915_reg_defs.h include and with the one introducing regs/xe_reg_defs.h - Remove more cases of i915_reg_defs.h being used when all it was needed was linux/bitfield.h (Matt Roper) - Move some registers to the corresponding regs/*.h file (Matt Roper) Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com> Reviewed-by: Matt Roper <matthew.d.roper@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> [Rodrigo squashed here the removal of the i915 include]
Diffstat (limited to 'drivers/gpu/drm/xe/xe_step.c')
-rw-r--r--drivers/gpu/drm/xe/xe_step.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/gpu/drm/xe/xe_step.c b/drivers/gpu/drm/xe/xe_step.c
index ca77d0971529..14f482f29ae4 100644
--- a/drivers/gpu/drm/xe/xe_step.c
+++ b/drivers/gpu/drm/xe/xe_step.c
@@ -5,6 +5,8 @@
#include "xe_step.h"
+#include <linux/bitfield.h>
+
#include "xe_device.h"
#include "xe_platform_types.h"