diff options
author | Joel Porquet <joel@porquet.org> | 2015-07-07 17:11:46 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2015-07-11 17:14:23 -0400 |
commit | 41a83e06e2bb9ac46731681fd44d1e6ab184dac5 (patch) | |
tree | f7d6c9e428ad96399b247cb73bc3ec760bc246cf /drivers/irqchip/irq-versatile-fpga.c | |
parent | d452bca82d9ff4f220afa4234418912623db4fe6 (diff) |
irqchip: Prepare for local stub header removal
The IRQCHIP_DECLARE macro moved to to 'include/linux/irqchip.h', so
the local irqchip.h became an empty shell, which solely includes
include/linux/irqchip.h
Include the global header in all irqchip drivers instead of the local
header, so we can remove it.
Signed-off-by: Joel Porquet <joel@porquet.org>
Cc: vgupta@synopsys.com
Cc: monstr@monstr.eu
Cc: ralf@linux-mips.org
Cc: jason@lakedaemon.net
Link: http://lkml.kernel.org/r/1882096.X39jVG8e0D@joel-zenbook
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'drivers/irqchip/irq-versatile-fpga.c')
-rw-r--r-- | drivers/irqchip/irq-versatile-fpga.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/irqchip/irq-versatile-fpga.c b/drivers/irqchip/irq-versatile-fpga.c index 888111b76ea0..4ba480b92844 100644 --- a/drivers/irqchip/irq-versatile-fpga.c +++ b/drivers/irqchip/irq-versatile-fpga.c | |||
@@ -4,6 +4,7 @@ | |||
4 | #include <linux/bitops.h> | 4 | #include <linux/bitops.h> |
5 | #include <linux/irq.h> | 5 | #include <linux/irq.h> |
6 | #include <linux/io.h> | 6 | #include <linux/io.h> |
7 | #include <linux/irqchip.h> | ||
7 | #include <linux/irqchip/versatile-fpga.h> | 8 | #include <linux/irqchip/versatile-fpga.h> |
8 | #include <linux/irqdomain.h> | 9 | #include <linux/irqdomain.h> |
9 | #include <linux/module.h> | 10 | #include <linux/module.h> |
@@ -14,8 +15,6 @@ | |||
14 | #include <asm/exception.h> | 15 | #include <asm/exception.h> |
15 | #include <asm/mach/irq.h> | 16 | #include <asm/mach/irq.h> |
16 | 17 | ||
17 | #include "irqchip.h" | ||
18 | |||
19 | #define IRQ_STATUS 0x00 | 18 | #define IRQ_STATUS 0x00 |
20 | #define IRQ_RAW_STATUS 0x04 | 19 | #define IRQ_RAW_STATUS 0x04 |
21 | #define IRQ_ENABLE_SET 0x08 | 20 | #define IRQ_ENABLE_SET 0x08 |