Commit-ID: 08dad486d98e55d49b760cbaa20b71f35566d4e6 Gitweb: http://git.kernel.org/tip/08dad486d98e55d49b760cbaa20b71f35566d4e6 Author: Jiang Liu <[email protected]> AuthorDate: Thu, 4 Jun 2015 12:13:12 +0800 Committer: Thomas Gleixner <[email protected]> CommitDate: Thu, 25 Jun 2015 12:06:45 +0200
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]> --- include/linux/irqnr.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/linux/irqnr.h b/include/linux/irqnr.h index fdd5cc1..9669bf9 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)) -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

