All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] irqchip: gic-v3: Explicitly include linux/io.h
@ 2015-08-07  5:31 Ben Zhang
  2015-08-07  8:40 ` Marc Zyngier
  0 siblings, 1 reply; 5+ messages in thread
From: Ben Zhang @ 2015-08-07  5:31 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: Jason Cooper, Marc Zyngier, linux-kernel, Ben Zhang

linux/io.h is needed because the driver uses:
readl_relaxed
writel_relaxed
writeq_relaxed
readq_relaxed
iounmap

The header was implicitly included by an unrelated
commit 332fd7c4fef5
("genirq: Generic chip: Change irq_reg_{readl,writel} arguments")
from the path below:
include/linux/io.h
include/linux/irq.h
include/linux/of_irq.h
drivers/irqchip/irq-gic-v3.c

Signed-off-by: Ben Zhang <benzh@chromium.org>
---
 drivers/irqchip/irq-gic-v3.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/irqchip/irq-gic-v3.c b/drivers/irqchip/irq-gic-v3.c
index e406bc5..3350b8d 100644
--- a/drivers/irqchip/irq-gic-v3.c
+++ b/drivers/irqchip/irq-gic-v3.c
@@ -19,6 +19,7 @@
 #include <linux/cpu_pm.h>
 #include <linux/delay.h>
 #include <linux/interrupt.h>
+#include <linux/io.h>
 #include <linux/of.h>
 #include <linux/of_address.h>
 #include <linux/of_irq.h>
-- 
2.5.0.rc2.392.g76e840b


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-08-19 22:44 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-07  5:31 [PATCH] irqchip: gic-v3: Explicitly include linux/io.h Ben Zhang
2015-08-07  8:40 ` Marc Zyngier
2015-08-07 23:38   ` Ben Zhang
2015-08-19 21:13     ` Thomas Gleixner
2015-08-19 22:44       ` Ben Zhang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.