diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2008-10-15 09:39:27 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-16 10:53:14 -0400 |
commit | 70dd4d992ab324a59cdcd6bedc3f4e729863d514 (patch) | |
tree | 338b28c18a60f0e1d4b65de43dfd24c1c5018532 /include/linux/interrupt.h | |
parent | 3235e936c0cc3589309280b6f59e5096779adae3 (diff) |
genirq: consolidate nr_irqs and for_each_irq_desc()
Move all of those to linux/irq.h where they belong.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/interrupt.h')
-rw-r--r-- | include/linux/interrupt.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 5a57df2ee922..58ff4e74b2f3 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h | |||
@@ -15,15 +15,6 @@ | |||
15 | #include <asm/ptrace.h> | 15 | #include <asm/ptrace.h> |
16 | #include <asm/system.h> | 16 | #include <asm/system.h> |
17 | 17 | ||
18 | #ifndef CONFIG_GENERIC_HARDIRQS | ||
19 | # define for_each_irq_desc(irq, desc) \ | ||
20 | for (irq = 0; irq < nr_irqs; irq++) | ||
21 | |||
22 | # define nr_irqs NR_IRQS | ||
23 | #else | ||
24 | extern int nr_irqs; | ||
25 | #endif | ||
26 | |||
27 | /* | 18 | /* |
28 | * These correspond to the IORESOURCE_IRQ_* defines in | 19 | * These correspond to the IORESOURCE_IRQ_* defines in |
29 | * linux/ioport.h to select the interrupt line behaviour. When | 20 | * linux/ioport.h to select the interrupt line behaviour. When |