[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20141128044604.GO22670@titan.lakedaemon.net>
Date: Thu, 27 Nov 2014 23:46:04 -0500
From: Jason Cooper <jason@...edaemon.net>
To: Stephen Rothwell <sfr@...b.auug.org.au>,
Marc Zyngier <marc.zyngier@....com>
Cc: linux-next@...r.kernel.org, linux-kernel@...r.kernel.org,
Suravee Suthikulpanit <Suravee.Suthikulpanit@....com>,
Thomas Gleixner <tglx@...utronix.de>
Subject: [PATCH] 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@...edaemon.net>
---
I've added this to irqchip/irqdomain-arm locally and pushed it to next. If
there are no objections, I'll push it to irqchip/irqdomain-arm.
thx,
Jason.
include/linux/irqchip/arm-gic.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/linux/irqchip/arm-gic.h b/include/linux/irqchip/arm-gic.h
index 60b09ed58cae..d1b2263a4db3 100644
--- a/include/linux/irqchip/arm-gic.h
+++ b/include/linux/irqchip/arm-gic.h
@@ -10,6 +10,8 @@
#ifndef __LINUX_IRQCHIP_ARM_GIC_H
#define __LINUX_IRQCHIP_ARM_GIC_H
+#include <linux/irqdomain.h>
+
#define GIC_CPU_CTRL 0x00
#define GIC_CPU_PRIMASK 0x04
#define GIC_CPU_BINPOINT 0x08
--
2.1.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists