-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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>
- Loading branch information
Thomas Gleixner
authored and
Ingo Molnar
committed
Oct 18, 2008
1 parent
cc8e920
commit dd3a1db
Showing
3 changed files
with
26 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#ifndef _LINUX_IRQNR_H | ||
#define _LINUX_IRQNR_H | ||
|
||
#ifndef CONFIG_GENERIC_HARDIRQS | ||
#include <asm/irq.h> | ||
# define nr_irqs NR_IRQS | ||
|
||
# define for_each_irq_desc(irq, desc) \ | ||
for (irq = 0; irq < nr_irqs; irq++) | ||
#else | ||
extern int nr_irqs; | ||
|
||
# define for_each_irq_desc(irq, desc) \ | ||
for (irq = 0, desc = irq_desc; irq < nr_irqs; irq++, desc++) | ||
|
||
# define for_each_irq_desc_reverse(irq, desc) \ | ||
for (irq = nr_irqs -1, desc = irq_desc + (nr_irqs -1 ); \ | ||
irq > 0; irq--, desc--) | ||
#endif | ||
|
||
#define for_each_irq_nr(irq) \ | ||
for (irq = 0; irq < nr_irqs; irq++) | ||
|
||
#endif |