#ifdef __KERNEL__ #ifndef _ASM_POWERPC_IRQ_H #define _ASM_POWERPC_IRQ_H /* * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. */ #include <linux/irqdomain.h> #include <linux/threads.h> #include <linux/list.h> #include <linux/radix-tree.h> #include <asm/types.h> #include <linux/atomic.h> extern atomic_t ppc_n_lost_interrupts; /* This number is used when no interrupt has been assigned */ #define NO_IRQ (0) /* Total number of virq in the platform */ #define NR_IRQS CONFIG_NR_IRQS /* Same thing, used by the generic IRQ code */ #define NR_IRQS_LEGACY NUM_ISA_INTERRUPTS extern irq_hw_number_t virq_to_hw(unsigned int virq);
static __inline__ int irq_canonicalize(int irq) { return irq; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Benjamin Herrenschmidt | 13 | 100.00% | 1 | 100.00% |
Total | 13 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Paul Mackerras | 79 | 35.43% | 4 | 20.00% |
Kumar Gala | 54 | 24.22% | 1 | 5.00% |
Benjamin Herrenschmidt | 45 | 20.18% | 3 | 15.00% |
Linus Torvalds (pre-git) | 13 | 5.83% | 4 | 20.00% |
Stuart Yoder | 10 | 4.48% | 1 | 5.00% |
Michael Ellerman | 7 | 3.14% | 2 | 10.00% |
Geoff Levand | 7 | 3.14% | 1 | 5.00% |
Grant C. Likely | 3 | 1.35% | 1 | 5.00% |
Linus Torvalds | 2 | 0.90% | 1 | 5.00% |
Olof Johansson | 2 | 0.90% | 1 | 5.00% |
Arun Sharma | 1 | 0.45% | 1 | 5.00% |
Total | 223 | 100.00% | 20 | 100.00% |