diff options
author | 2023-04-19 12:42:43 +0300 | |
---|---|---|
committer | 2023-04-19 15:55:05 +0300 | |
commit | 476f62b8a597202a7c97bf50a7f6ece0925ce6f0 (patch) | |
tree | 05ab855445bedfcffd4d9dcd227d557b4f7aeb7c /drivers/gpu/drm/i915/i915_irq.c | |
parent | drm/i915/dp_mst: Fix active port PLL selection for secondary MST streams (diff) | |
download | wireguard-linux-476f62b8a597202a7c97bf50a7f6ece0925ce6f0.tar.xz wireguard-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_irq.c')
-rw-r--r-- | drivers/gpu/drm/i915/i915_irq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/i915_irq.c b/drivers/gpu/drm/i915/i915_irq.c index 4345931c6596..b7a19db75c9c 100644 --- a/drivers/gpu/drm/i915/i915_irq.c +++ b/drivers/gpu/drm/i915/i915_irq.c @@ -54,6 +54,7 @@ #include "i915_driver.h" #include "i915_drv.h" #include "i915_irq.h" +#include "i915_reg.h" /** * DOC: interrupt handling |