/* * Copyright (C) 2003 Ralf Baechle * * 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. * * Handler for RM7000 extended interrupts. These are a non-standard * feature so we handle them separately from standard interrupts. */ #include <linux/init.h> #include <linux/interrupt.h> #include <linux/irq.h> #include <linux/kernel.h> #include <asm/irq_cpu.h> #include <asm/mipsregs.h>
static inline void unmask_rm7k_irq(struct irq_data *d) { set_c0_intcontrol(0x100 << (d->irq - RM7K_CPU_IRQ_BASE)); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 18 | 72.00% | 2 | 50.00% |
Thomas Gleixner | 6 | 24.00% | 1 | 25.00% |
Atsushi Nemoto | 1 | 4.00% | 1 | 25.00% |
Total | 25 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 18 | 72.00% | 2 | 50.00% |
Thomas Gleixner | 6 | 24.00% | 1 | 25.00% |
Atsushi Nemoto | 1 | 4.00% | 1 | 25.00% |
Total | 25 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 35 | 74.47% | 2 | 28.57% |
Atsushi Nemoto | 10 | 21.28% | 3 | 42.86% |
Ralf Bächle | 1 | 2.13% | 1 | 14.29% |
Thomas Gleixner | 1 | 2.13% | 1 | 14.29% |
Total | 47 | 100.00% | 7 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 96 | 62.75% | 2 | 14.29% |
Thomas Gleixner | 18 | 11.76% | 2 | 14.29% |
Atsushi Nemoto | 17 | 11.11% | 4 | 28.57% |
Ralf Bächle | 14 | 9.15% | 4 | 28.57% |
Thomas Koeller | 5 | 3.27% | 1 | 7.14% |
David Howells | 3 | 1.96% | 1 | 7.14% |
Total | 153 | 100.00% | 14 | 100.00% |