diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2011-09-24 02:29:46 +0200 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2011-10-24 23:34:25 +0100 |
commit | 83bc769200802c9ce8fd1c7315fd14198d385b12 (patch) | |
tree | 5ad1e1704460f1bb03a6bfb13fdb2fa81ebc3279 /arch/mips/jz4740/irq.h | |
parent | 3766386037827fe7064f57f9aec27b3b5e9417aa (diff) | |
download | op-kernel-dev-83bc769200802c9ce8fd1c7315fd14198d385b12.zip op-kernel-dev-83bc769200802c9ce8fd1c7315fd14198d385b12.tar.gz |
MIPS: JZ4740: Use generic irq chip
Use the generic irq chip framework to implement the jz4740 INTC and GPIO irq
chips.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-mips@linux-mips.org
Cc: linux-kernel@vger.kernel.org
Patchwork: https://patchwork.linux-mips.org/patch/2434/
Patchwork: https://patchwork.linux-mips.org/patch/2771/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/jz4740/irq.h')
-rw-r--r-- | arch/mips/jz4740/irq.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/mips/jz4740/irq.h b/arch/mips/jz4740/irq.h index 56b5ead..f75e39d 100644 --- a/arch/mips/jz4740/irq.h +++ b/arch/mips/jz4740/irq.h @@ -15,7 +15,9 @@ #ifndef __MIPS_JZ4740_IRQ_H__ #define __MIPS_JZ4740_IRQ_H__ -extern void jz4740_intc_suspend(void); -extern void jz4740_intc_resume(void); +#include <linux/irq.h> + +extern void jz4740_irq_suspend(struct irq_data *data); +extern void jz4740_irq_resume(struct irq_data *data); #endif |