/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_IA64_IRQ_H #define _ASM_IA64_IRQ_H /* * Copyright (C) 1999-2000, 2002 Hewlett-Packard Co * David Mosberger-Tang <davidm@hpl.hp.com> * Stephane Eranian <eranian@hpl.hp.com> * * 11/24/98 S.Eranian updated TIMER_IRQ and irq_canonicalize * 01/20/99 S.Eranian added keyboard interrupt * 02/29/00 D.Mosberger moved most things into hw_irq.h */ #include <linux/types.h> #include <linux/cpumask.h> #include <generated/nr-irqs.h>
static __inline__ int irq_canonicalize (int irq) { /* * We do the legacy thing here of pretending that irqs < 16 * are 8259 irqs. This really shouldn't be necessary at all, * but we keep it here as serial.c still uses it... */ return ((irq == 2) ? 9 : irq); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 23 | 95.83% | 2 | 66.67% |
Steven Cole | 1 | 4.17% | 1 | 33.33% |
Total | 24 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 34 | 39.08% | 2 | 18.18% |
John Keller | 16 | 18.39% | 1 | 9.09% |
Thomas Gleixner | 14 | 16.09% | 1 | 9.09% |
David Mosberger-Tang | 12 | 13.79% | 1 | 9.09% |
Mike Travis | 4 | 4.60% | 1 | 9.09% |
Steven Cole | 2 | 2.30% | 1 | 9.09% |
Isaku Yamahata | 2 | 2.30% | 1 | 9.09% |
Greg Kroah-Hartman | 1 | 1.15% | 1 | 9.09% |
Sam Ravnborg | 1 | 1.15% | 1 | 9.09% |
Takayoshi Kouchi | 1 | 1.15% | 1 | 9.09% |
Total | 87 | 100.00% | 11 | 100.00% |