-
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.
- Loading branch information
Thomas Gleixner
authored and
Ingo Molnar
committed
Oct 18, 2008
1 parent
d25c4a7
commit a440811
Showing
4 changed files
with
27 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: cc8e920aaf5558f87851169b33c420cc4516c253 | ||
refs/heads/master: dd3a1db900f2a215a7d7dd71b836e149a6cf5fed |
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 |