diff options
| author | Paul Mundt <lethal@linux-sh.org> | 2010-10-27 22:30:31 -0400 |
|---|---|---|
| committer | Thomas Gleixner <tglx@linutronix.de> | 2010-10-28 05:58:39 -0400 |
| commit | 4600d7c493f354a3e338a35bcf8a3bfbe815776a (patch) | |
| tree | 1739960560b0fc6ac7aef1946e2e20aadc0a3e5b /include | |
| parent | 639bd12f778d55a2632fde5af7d0719abc1871b9 (diff) | |
genirq: Fix up irq_node() for irq_data changes.
Now that the node ID is tracked in the irq_data structure, update the
irq_node() definition accordingly. This fixes up irq_node() usage under
GENERIC_HARDIRQS_NO_DEPRECATED && SMP.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
LKML-Reference: <20101028023031.GB10365@linux-sh.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/irqnr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/irqnr.h b/include/linux/irqnr.h index 05aa8c23483f..3bc4dcab6e82 100644 --- a/include/linux/irqnr.h +++ b/include/linux/irqnr.h | |||
| @@ -43,7 +43,7 @@ unsigned int irq_get_next_irq(unsigned int offset); | |||
| 43 | else | 43 | else |
| 44 | 44 | ||
| 45 | #ifdef CONFIG_SMP | 45 | #ifdef CONFIG_SMP |
| 46 | #define irq_node(irq) (irq_to_desc(irq)->node) | 46 | #define irq_node(irq) (irq_get_irq_data(irq)->node) |
| 47 | #else | 47 | #else |
| 48 | #define irq_node(irq) 0 | 48 | #define irq_node(irq) 0 |
| 49 | #endif | 49 | #endif |
