diff options
author | Jani Nikula <jani.nikula@intel.com> | 2023-04-19 11:42:43 +0200 |
---|---|---|
committer | Jani Nikula <jani.nikula@intel.com> | 2023-04-19 14:55:05 +0200 |
commit | 476f62b8a597202a7c97bf50a7f6ece0925ce6f0 (patch) | |
tree | 05ab855445bedfcffd4d9dcd227d557b4f7aeb7c /drivers/gpu/drm/i915/i915_debugfs.c | |
parent | drm/i915/dp_mst: Fix active port PLL selection for secondary MST streams (diff) | |
download | linux-476f62b8a597202a7c97bf50a7f6ece0925ce6f0.tar.xz linux-476f62b8a597202a7c97bf50a7f6ece0925ce6f0.zip |
drm/i915: use explicit includes for i915_reg.h and i915_irq.h
A lot of places include i915_reg.h implicitly via i915_irq.h, which gets
included implicitly via intel_display_trace.h. Remove the includes from
the headers, and include i915_reg.h and i915_irq.h explicitly where
needed.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230419094243.366821-1-jani.nikula@intel.com
Diffstat (limited to 'drivers/gpu/drm/i915/i915_debugfs.c')
-rw-r--r-- | drivers/gpu/drm/i915/i915_debugfs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c index 16011c0286ad..7545de191a40 100644 --- a/drivers/gpu/drm/i915/i915_debugfs.c +++ b/drivers/gpu/drm/i915/i915_debugfs.c @@ -50,6 +50,7 @@ #include "i915_debugfs_params.h" #include "i915_driver.h" #include "i915_irq.h" +#include "i915_reg.h" #include "i915_scheduler.h" #include "intel_mchbar_regs.h" |