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-mips-cpu.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-mips-cpu.c')
-rw-r--r-- | drivers/irqchip/irq-mips-cpu.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/irqchip/irq-mips-cpu.c b/drivers/irqchip/irq-mips-cpu.c index a43c41988009..8c504f562e9d 100644 --- a/drivers/irqchip/irq-mips-cpu.c +++ b/drivers/irqchip/irq-mips-cpu.c | |||
@@ -31,6 +31,7 @@ | |||
31 | #include <linux/interrupt.h> | 31 | #include <linux/interrupt.h> |
32 | #include <linux/kernel.h> | 32 | #include <linux/kernel.h> |
33 | #include <linux/irq.h> | 33 | #include <linux/irq.h> |
34 | #include <linux/irqchip.h> | ||
34 | #include <linux/irqdomain.h> | 35 | #include <linux/irqdomain.h> |
35 | 36 | ||
36 | #include <asm/irq_cpu.h> | 37 | #include <asm/irq_cpu.h> |
@@ -38,8 +39,6 @@ | |||
38 | #include <asm/mipsmtregs.h> | 39 | #include <asm/mipsmtregs.h> |
39 | #include <asm/setup.h> | 40 | #include <asm/setup.h> |
40 | 41 | ||
41 | #include "irqchip.h" | ||
42 | |||
43 | static inline void unmask_mips_irq(struct irq_data *d) | 42 | static inline void unmask_mips_irq(struct irq_data *d) |
44 | { | 43 | { |
45 | set_c0_status(0x100 << (d->irq - MIPS_CPU_IRQ_BASE)); | 44 | set_c0_status(0x100 << (d->irq - MIPS_CPU_IRQ_BASE)); |