diff options
author | Paul Mundt <lethal@linux-sh.org> | 2006-10-06 17:35:48 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2006-10-06 17:35:48 +0900 |
commit | 525ccc452c79db41874c5edac3f67618a0997d6f (patch) | |
tree | 937987eae54debb7b23d4473089229a798bacc32 /include/asm-sh | |
parent | 580410005daecd8e9f0e1baa9ddadbb7f706e7e2 (diff) | |
download | op-kernel-dev-525ccc452c79db41874c5edac3f67618a0997d6f.zip op-kernel-dev-525ccc452c79db41874c5edac3f67618a0997d6f.tar.gz |
sh: Convert INTC2 IRQ handler to irq_chip.
More struct irq_chip conversions, this time the INTC2 handlers.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'include/asm-sh')
-rw-r--r-- | include/asm-sh/irq.h | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/include/asm-sh/irq.h b/include/asm-sh/irq.h index 0e5f365..28996f9 100644 --- a/include/asm-sh/irq.h +++ b/include/asm-sh/irq.h @@ -697,13 +697,15 @@ extern int ipr_irq_demux(int irq); #define INTC2_INTPRI_OFFSET 0x00 -void make_intc2_irq(unsigned int irq, - unsigned int ipr_offset, unsigned int ipr_shift, - unsigned int msk_offset, unsigned int msk_shift, - unsigned int priority); +struct intc2_data { + unsigned short irq; + unsigned char ipr_offset, ipr_shift; + unsigned char msk_offset, msk_shift; + unsigned char priority; +}; + +void make_intc2_irq(struct intc2_data *); void init_IRQ_intc2(void); -void intc2_add_clear_irq(int irq, int (*fn)(int)); - #endif extern int shmse_irq_demux(int irq); |