diff options
author | Thomas Gleixner | 2009-05-12 22:37:11 +0200 |
---|---|---|
committer | Haavard Skinnemoen | 2009-05-13 16:53:48 +0200 |
commit | 334034c132017fa662716b70591b2297ed7f238c (patch) | |
tree | 39b2a202504a719d664eff41daebcfc59180fccc /arch | |
parent | avr32: Solves problem with inverted MCI detect pin on Merisc board (diff) | |
download | kernel-qcow2-linux-334034c132017fa662716b70591b2297ed7f238c.tar.gz kernel-qcow2-linux-334034c132017fa662716b70591b2297ed7f238c.tar.xz kernel-qcow2-linux-334034c132017fa662716b70591b2297ed7f238c.zip |
avr32: remove obsolete hw_interrupt_type
The defines and typedefs (hw_interrupt_type, no_irq_type, irq_desc_t) have
been kept around for migration reasons. After more than two years it's
time to remove them finally.
This patch cleans up one of the remaining users. When all such patches
hit mainline we can remove the defines and typedefs finally.
Impact: cleanup
Convert the last remaining users to struct irq_chip and remove the
define.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Haavard Skinnemoen <haavard.skinnemoen@atmel.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/avr32/include/asm/hw_irq.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/avr32/include/asm/hw_irq.h b/arch/avr32/include/asm/hw_irq.h index 218b0a6bfd1b..a36f9fcb8fcd 100644 --- a/arch/avr32/include/asm/hw_irq.h +++ b/arch/avr32/include/asm/hw_irq.h @@ -1,7 +1,7 @@ #ifndef __ASM_AVR32_HW_IRQ_H #define __ASM_AVR32_HW_IRQ_H -static inline void hw_resend_irq(struct hw_interrupt_type *h, unsigned int i) +static inline void hw_resend_irq(struct irq_chip *h, unsigned int i) { /* Nothing to do */ } |