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 | bc9a454a9440e2872ecf71256fb962e4bb35e937 (patch) | |
tree | e2c5b5d5ac4acb8434b7a22debc73e0a635c66d5 /drivers/watchdog/octeon-wdt-main.c | |
parent | c7d49545997eab111aec14be152842f56a0cabc4 (diff) | |
download | linux-bc9a454a9440e2872ecf71256fb962e4bb35e937.tar.bz2 |
watchdog/octeon-wdt: 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>
Diffstat (limited to 'drivers/watchdog/octeon-wdt-main.c')
-rw-r--r-- | drivers/watchdog/octeon-wdt-main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/watchdog/octeon-wdt-main.c b/drivers/watchdog/octeon-wdt-main.c index fde9e739b436..391c774a1f67 100644 --- a/drivers/watchdog/octeon-wdt-main.c +++ b/drivers/watchdog/octeon-wdt-main.c @@ -54,6 +54,7 @@ #include <linux/delay.h> #include <linux/cpu.h> #include <linux/irq.h> +#include <linux/irqdomain.h> #include <asm/mipsregs.h> #include <asm/uasm.h> |