diff options
author | Jason Cooper <jason@lakedaemon.net> | 2014-11-27 18:27:49 +0000 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2014-11-28 16:42:13 +0000 |
commit | df870c78848aac4d953f61a8926a792de8133b9e (patch) | |
tree | c71441789658e291ac449c32ac3201525a5f7b97 | |
parent | e684e258d831781fd89d2047a272fdb0b0ffe7f4 (diff) | |
download | linux-df870c78848aac4d953f61a8926a792de8133b9e.tar.gz linux-df870c78848aac4d953f61a8926a792de8133b9e.tar.bz2 linux-df870c78848aac4d953f61a8926a792de8133b9e.zip |
irqchip: gic: Remove warning by including linux/irqdomain.h
Commit
853a33ce6932 irqchip: gic-v2m: Add support for ARM GICv2m MSI(-X) doorbell
Introduced a series of warnings when building ARM multi_v7_defconfig:
include/linux/irqchip/arm-gic.h:109:53: warning: its scope is only this definition or declaration, which is probably not what you want
In file included from arch/arm/mach-ux500/pm.c:13:0:
include/linux/irqchip/arm-gic.h:109:53: warning: 'struct irq_domain' declared inside parameter list
int gicv2m_of_init(struct device_node *node, struct irq_domain *parent);
^
Fix this by adding the proper include.
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
[ jac merged much more correct version from Marc into this patch ]
Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Acked-by: Will Deacon <will.deacon@arm.com>
Link: https://lkml.kernel.org/r/1417170975-1163-1-git-send-email-marc.zyngier@arm.com
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
-rw-r--r-- | include/linux/irqchip/arm-gic.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/irqchip/arm-gic.h b/include/linux/irqchip/arm-gic.h index 60b09ed58cae..71d706d5f169 100644 --- a/include/linux/irqchip/arm-gic.h +++ b/include/linux/irqchip/arm-gic.h @@ -91,6 +91,8 @@ #ifndef __ASSEMBLY__ +#include <linux/irqdomain.h> + struct device_node; extern struct irq_chip gic_arch_extn; |