diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2008-10-15 15:39:27 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-16 16:53:14 +0200 |
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 @@ #include <asm/ptrace.h> #include <asm/system.h> -#ifndef CONFIG_GENERIC_HARDIRQS -# define for_each_irq_desc(irq, desc) \ - for (irq = 0; irq < nr_irqs; irq++) - -# define nr_irqs NR_IRQS -#else -extern int nr_irqs; -#endif - /* * These correspond to the IORESOURCE_IRQ_* defines in * linux/ioport.h to select the interrupt line behaviour. When |