diff options
author | Lucas De Marchi <lucas.demarchi@intel.com> | 2023-02-21 11:39:52 -0800 |
---|---|---|
committer | Rodrigo Vivi <rodrigo.vivi@intel.com> | 2023-12-19 18:29:07 -0500 |
commit | 84ff55006578d169b9331014bd34f0da2ca0616b (patch) | |
tree | 7a9a6156f6ff5249593e7624aa6b4f9e4f20acfc /drivers | |
parent | 5a4a8e8b3b0be40c7cdf928ad8b6cfe6e5c465fd (diff) | |
download | lwn-84ff55006578d169b9331014bd34f0da2ca0616b.tar.gz lwn-84ff55006578d169b9331014bd34f0da2ca0616b.zip |
drm/xe/guc: Remove i915_regs.h include
i915_regs.h is not needed, particularly in a header file. What is needed
is i915_reg_defs.h for use of _MMIO() and similar macros.
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/gpu/drm/xe/xe_guc_reg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/xe/xe_guc_reg.h b/drivers/gpu/drm/xe/xe_guc_reg.h index 1e16a9b76ddc..513a7e0c8a5a 100644 --- a/drivers/gpu/drm/xe/xe_guc_reg.h +++ b/drivers/gpu/drm/xe/xe_guc_reg.h @@ -9,7 +9,7 @@ #include <linux/compiler.h> #include <linux/types.h> -#include "i915_reg.h" +#include "i915_reg_defs.h" /* Definitions of GuC H/W registers, bits, etc */ |