diff options
author | Marc Zyngier <maz@kernel.org> | 2018-09-13 09:30:34 +0100 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2021-06-10 13:09:15 +0100 |
commit | 1982752f6ba6a9d74a214b008ae9e336339276e8 (patch) | |
tree | 1f745dcac41c193910978e50041db02aa5a2cdbf | |
parent | bc9a454a9440e2872ecf71256fb962e4bb35e937 (diff) |
irqchip/mips-gic: Directly include linux/irqdomain.h
This drivers currently obtains linux/irqdomain.h by luck and
a chain of bizarre inclusions, which we're about to fix.
Let's include the required file directly.
Signed-off-by: Marc Zyngier <maz@kernel.org>
-rw-r--r-- | drivers/irqchip/irq-mips-gic.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/irqchip/irq-mips-gic.c b/drivers/irqchip/irq-mips-gic.c index 215885962bb0..a2cbf0acff1c 100644 --- a/drivers/irqchip/irq-mips-gic.c +++ b/drivers/irqchip/irq-mips-gic.c @@ -16,6 +16,7 @@ #include <linux/interrupt.h> #include <linux/irq.h> #include <linux/irqchip.h> +#include <linux/irqdomain.h> #include <linux/of_address.h> #include <linux/percpu.h> #include <linux/sched.h> |