diff options
author | Jiang Liu <[email protected]> | 2015-06-04 12:13:12 +0800 |
---|---|---|
committer | Thomas Gleixner <[email protected]> | 2015-06-25 12:06:45 +0200 |
commit | 08dad486d98e55d49b760cbaa20b71f35566d4e6 (patch) | |
tree | c42998ef880576251e051ce176c24816886e0ab0 | |
parent | daf7ab7c58ac5f6304b63cca47a06cdc213361d7 (diff) |
genirq: Remove irq_node()
Macro irq_node() has no user. Remove it.
Signed-off-by: Jiang Liu <[email protected]>
Cc: Konrad Rzeszutek Wilk <[email protected]>
Cc: Tony Luck <[email protected]>
Cc: Bjorn Helgaas <[email protected]>
Cc: Benjamin Herrenschmidt <[email protected]>
Cc: Randy Dunlap <[email protected]>
Cc: Yinghai Lu <[email protected]>
Cc: Borislav Petkov <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Thomas Gleixner <[email protected]>
-rw-r--r-- | include/linux/irqnr.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/linux/irqnr.h b/include/linux/irqnr.h index fdd5cc16c9c4..9669bf9d4f48 100644 --- a/include/linux/irqnr.h +++ b/include/linux/irqnr.h @@ -23,12 +23,6 @@ unsigned int irq_get_next_irq(unsigned int offset); ; \ else -#ifdef CONFIG_SMP -#define irq_node(irq) (irq_get_irq_data(irq)->node) -#else -#define irq_node(irq) 0 -#endif - # define for_each_active_irq(irq) \ for (irq = irq_get_next_irq(0); irq < nr_irqs; \ irq = irq_get_next_irq(irq + 1)) |