diff options
author | Ingo Molnar <mingo@elte.hu> | 2006-06-29 05:24:57 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-29 13:26:25 -0400 |
commit | f1c2662cbc6a0a9772655649bdf579803d33470b (patch) | |
tree | ab6d0cc97527941e038edf0532f3917fca0953f8 /kernel/irq/manage.c | |
parent | e76de9f8eb67b7acc1cc6f28c4be8583adf0a90c (diff) |
[PATCH] genirq: cleanup: no_irq_type -> no_irq_chip rename
Rename no_irq_type to no_irq_chip.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/irq/manage.c')
-rw-r--r-- | kernel/irq/manage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c index 627d401c2979..9eb1d518ee1c 100644 --- a/kernel/irq/manage.c +++ b/kernel/irq/manage.c | |||
@@ -199,7 +199,7 @@ int setup_irq(unsigned int irq, struct irqaction *new) | |||
199 | if (irq >= NR_IRQS) | 199 | if (irq >= NR_IRQS) |
200 | return -EINVAL; | 200 | return -EINVAL; |
201 | 201 | ||
202 | if (desc->chip == &no_irq_type) | 202 | if (desc->chip == &no_irq_chip) |
203 | return -ENOSYS; | 203 | return -ENOSYS; |
204 | /* | 204 | /* |
205 | * Some drivers like serial.c use request_irq() heavily, | 205 | * Some drivers like serial.c use request_irq() heavily, |