diff options
author | Arnd Bergmann <arnd@arndb.de> | 2023-05-16 22:05:07 +0200 |
---|---|---|
committer | Marc Zyngier <maz@kernel.org> | 2023-06-17 08:21:15 +0200 |
commit | 5b7e5676209120814dbb9fec8bc3769f0f7a7958 (patch) | |
tree | bd1f7414706a083272e125cf1fc6b75232184791 /drivers/irqchip | |
parent | irqchip/clps711x: Remove unused clps711x_intc_init() function (diff) | |
download | linux-5b7e5676209120814dbb9fec8bc3769f0f7a7958.tar.xz linux-5b7e5676209120814dbb9fec8bc3769f0f7a7958.zip |
irqchip/mxs: Include linux/irqchip/mxs.h
This header contains the definition for icoll_handle_irq(), which
is used in arch/arm/mach-mxs/mach-mxs.c, without this we get a warning
about a missing prototype when building with W=1.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Shawn Guo <shawnguo@kernel.org>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/20230516200516.554663-4-arnd@kernel.org
Diffstat (limited to 'drivers/irqchip')
-rw-r--r-- | drivers/irqchip/irq-mxs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/irqchip/irq-mxs.c b/drivers/irqchip/irq-mxs.c index 55cb6b5a686e..b3b1fba871c1 100644 --- a/drivers/irqchip/irq-mxs.c +++ b/drivers/irqchip/irq-mxs.c @@ -9,6 +9,7 @@ #include <linux/init.h> #include <linux/irq.h> #include <linux/irqchip.h> +#include <linux/irqchip/mxs.h> #include <linux/irqdomain.h> #include <linux/io.h> #include <linux/of.h> |