diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2009-04-09 13:18:47 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-09 13:33:21 -0400 |
commit | 91e58b6e95a9c6b9efd928ae352eae5e75ae598c (patch) | |
tree | 9b0befc6ab90e4da87ce27ff354527e1405dd396 | |
parent | df5529297ec4c32d57dd149398e3add6c37bc054 (diff) |
MN10300: Convert obsolete no_irq_type to no_irq_chip
Convert the last remaining users to no_irq_chip.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | arch/mn10300/kernel/irq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mn10300/kernel/irq.c b/arch/mn10300/kernel/irq.c index 50fdb5c16e0c..4c3c58ef5cda 100644 --- a/arch/mn10300/kernel/irq.c +++ b/arch/mn10300/kernel/irq.c | |||
@@ -140,7 +140,7 @@ void __init init_IRQ(void) | |||
140 | int irq; | 140 | int irq; |
141 | 141 | ||
142 | for (irq = 0; irq < NR_IRQS; irq++) | 142 | for (irq = 0; irq < NR_IRQS; irq++) |
143 | if (irq_desc[irq].chip == &no_irq_type) | 143 | if (irq_desc[irq].chip == &no_irq_chip) |
144 | /* due to the PIC latching interrupt requests, even | 144 | /* due to the PIC latching interrupt requests, even |
145 | * when the IRQ is disabled, IRQ_PENDING is superfluous | 145 | * when the IRQ is disabled, IRQ_PENDING is superfluous |
146 | * and we can use handle_level_irq() for edge-triggered | 146 | * and we can use handle_level_irq() for edge-triggered |