diff options
author | 2023-09-26 15:19:02 +0300 | |
---|---|---|
committer | 2023-10-11 14:19:04 +0300 | |
commit | 80cf8f18c634c392c7f2503381f648481128a2bd (patch) | |
tree | 1f43dffc974a4d1124388bbd23870f91e76a80ca | |
parent | drm/i915/gvt: remove unused to_gvt() and reduce includes (diff) | |
download | wireguard-linux-80cf8f18c634c392c7f2503381f648481128a2bd.tar.xz wireguard-linux-80cf8f18c634c392c7f2503381f648481128a2bd.zip |
drm/i915/gvt: don't include gvt.h from intel_gvt_mmio_table.h
intel_gvt_mmio_table.c has no need to include the massive
gvt.h. Simplify.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Zhenyu Wang <zhenyuw@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230926121904.499888-2-jani.nikula@intel.com
-rw-r--r-- | drivers/gpu/drm/i915/intel_gvt_mmio_table.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/intel_gvt_mmio_table.c b/drivers/gpu/drm/i915/intel_gvt_mmio_table.c index b3c036a54529..87ecc5104fd9 100644 --- a/drivers/gpu/drm/i915/intel_gvt_mmio_table.c +++ b/drivers/gpu/drm/i915/intel_gvt_mmio_table.c @@ -15,8 +15,9 @@ #include "display/intel_psr_regs.h" #include "display/skl_watermark_regs.h" #include "display/vlv_dsi_pll_regs.h" +#include "gt/intel_engine_regs.h" #include "gt/intel_gt_regs.h" -#include "gvt/gvt.h" +#include "gvt/reg.h" #include "i915_drv.h" #include "i915_pvinfo.h" |