diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-03-10 10:46:30 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2009-03-11 02:11:34 -0400 |
commit | 353bca5ed4e0705ed4a1ac7b82491b223c3b55ba (patch) | |
tree | 1cc2aa3be6316307ce705a5608e67023d8374933 | |
parent | 97f7d6bcc10687ff79632da338646a266dd590fc (diff) |
powerpc/irq: Convert obsolete hw_interrupt_type to struct irq_chip
Impact: cleanup
Convert the last remaining users to struct irq_chip.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
CC: Benjamin Herrenschmidt <benh@kernel.crashing.org>
CC: linuxppc-dev@ozlabs.org
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
-rw-r--r-- | arch/powerpc/include/asm/hw_irq.h | 2 | ||||
-rw-r--r-- | arch/powerpc/platforms/powermac/pic.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/include/asm/hw_irq.h b/arch/powerpc/include/asm/hw_irq.h index f75a5fc64d2e..b7e034b0a6dd 100644 --- a/arch/powerpc/include/asm/hw_irq.h +++ b/arch/powerpc/include/asm/hw_irq.h | |||
@@ -129,7 +129,7 @@ static inline int irqs_disabled_flags(unsigned long flags) | |||
129 | * interrupt-retrigger: should we handle this via lost interrupts and IPIs | 129 | * interrupt-retrigger: should we handle this via lost interrupts and IPIs |
130 | * or should we not care like we do now ? --BenH. | 130 | * or should we not care like we do now ? --BenH. |
131 | */ | 131 | */ |
132 | struct hw_interrupt_type; | 132 | struct irq_chip; |
133 | 133 | ||
134 | #endif /* __KERNEL__ */ | 134 | #endif /* __KERNEL__ */ |
135 | #endif /* _ASM_POWERPC_HW_IRQ_H */ | 135 | #endif /* _ASM_POWERPC_HW_IRQ_H */ |
diff --git a/arch/powerpc/platforms/powermac/pic.h b/arch/powerpc/platforms/powermac/pic.h index c44c89f5e532..d622a8345aaa 100644 --- a/arch/powerpc/platforms/powermac/pic.h +++ b/arch/powerpc/platforms/powermac/pic.h | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | #include <linux/irq.h> | 4 | #include <linux/irq.h> |
5 | 5 | ||
6 | extern struct hw_interrupt_type pmac_pic; | 6 | extern struct irq_chip pmac_pic; |
7 | 7 | ||
8 | extern void pmac_pic_init(void); | 8 | extern void pmac_pic_init(void); |
9 | extern int pmac_get_irq(void); | 9 | extern int pmac_get_irq(void); |