#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.53% | 2 | 20.00% |
John Keller | 16 | 18.60% | 1 | 10.00% |
Thomas Gleixner | 14 | 16.28% | 1 | 10.00% |
David Mosberger-Tang | 12 | 13.95% | 1 | 10.00% |
Mike Travis | 4 | 4.65% | 1 | 10.00% |
Isaku Yamahata | 2 | 2.33% | 1 | 10.00% |
Steven Cole | 2 | 2.33% | 1 | 10.00% |
Takayoshi Kouchi | 1 | 1.16% | 1 | 10.00% |
Sam Ravnborg | 1 | 1.16% | 1 | 10.00% |
Total | 86 | 100.00% | 10 | 100.00% |