diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2008-10-16 12:20:58 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-10-18 08:05:18 -0400 |
commit | dd3a1db900f2a215a7d7dd71b836e149a6cf5fed (patch) | |
tree | b7e124cec8f750116907a86701937f3edf272936 /include/linux/irq.h | |
parent | cc8e920aaf5558f87851169b33c420cc4516c253 (diff) |
genirq: improve include files
Move the irq_desc related iterators out of irq.h, into irqnr.h, also
available via interrupt.h.
This way non-genirq (and even non-hardirq) architectures get the
common definitions and iterators.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/irq.h')
-rw-r--r-- | include/linux/irq.h | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h index 0618fb362cb4..d058c57be02d 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h | |||
@@ -11,25 +11,6 @@ | |||
11 | 11 | ||
12 | #include <linux/smp.h> | 12 | #include <linux/smp.h> |
13 | 13 | ||
14 | #ifndef CONFIG_GENERIC_HARDIRQS | ||
15 | # define nr_irqs NR_IRQS | ||
16 | |||
17 | # define for_each_irq_desc(irq, desc) \ | ||
18 | for (irq = 0; irq < nr_irqs; irq++) | ||
19 | #else | ||
20 | extern int nr_irqs; | ||
21 | |||
22 | # define for_each_irq_desc(irq, desc) \ | ||
23 | for (irq = 0, desc = irq_desc; irq < nr_irqs; irq++, desc++) | ||
24 | |||
25 | # define for_each_irq_desc_reverse(irq, desc) \ | ||
26 | for (irq = nr_irqs -1, desc = irq_desc + (nr_irqs -1 ); \ | ||
27 | irq > 0; irq--, desc--) | ||
28 | #endif | ||
29 | |||
30 | #define for_each_irq_nr(irq) \ | ||
31 | for (irq = 0; irq < nr_irqs; irq++) | ||
32 | |||
33 | #ifndef CONFIG_S390 | 14 | #ifndef CONFIG_S390 |
34 | 15 | ||
35 | #include <linux/linkage.h> | 16 | #include <linux/linkage.h> |
@@ -37,6 +18,7 @@ extern int nr_irqs; | |||
37 | #include <linux/spinlock.h> | 18 | #include <linux/spinlock.h> |
38 | #include <linux/cpumask.h> | 19 | #include <linux/cpumask.h> |
39 | #include <linux/irqreturn.h> | 20 | #include <linux/irqreturn.h> |
21 | #include <linux/irqnr.h> | ||
40 | #include <linux/errno.h> | 22 | #include <linux/errno.h> |
41 | 23 | ||
42 | #include <asm/irq.h> | 24 | #include <asm/irq.h> |