/* * Copyright (C) 2007 Lemote Inc. & Institute of Computing Technology * Author: Fuxin Zhang, zhangfx@lemote.com * * 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/interrupt.h> #include <asm/irq_cpu.h> #include <asm/i8259.h> #include <loongson.h>
static void i8259_irqdispatch(void) { int irq; irq = i8259_irq(); if (irq >= 0) do_IRQ(irq); else spurious_interrupt(); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Songmao Tian | 31 | 100.00% | 1 | 100.00% |
Total | 31 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Songmao Tian | 44 | 75.86% | 1 | 25.00% |
Wu Zhangjin | 14 | 24.14% | 3 | 75.00% |
Total | 58 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Songmao Tian | 45 | 86.54% | 1 | 25.00% |
Wu Zhangjin | 6 | 11.54% | 2 | 50.00% |
Ralf Bächle | 1 | 1.92% | 1 | 25.00% |
Total | 52 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Songmao Tian | 148 | 84.09% | 1 | 10.00% |
Wu Zhangjin | 26 | 14.77% | 7 | 70.00% |
Ralf Bächle | 2 | 1.14% | 2 | 20.00% |
Total | 176 | 100.00% | 10 | 100.00% |