/* * linux/arch/arm/mach-footbridge/isa-timer.c * * Copyright (C) 1998 Russell King. * Copyright (C) 1998 Phil Blundell */ #include <linux/clockchips.h> #include <linux/i8253.h> #include <linux/init.h> #include <linux/interrupt.h> #include <linux/irq.h> #include <linux/spinlock.h> #include <linux/timex.h> #include <asm/irq.h> #include <asm/mach/time.h> #include "common.h"
static irqreturn_t pit_timer_interrupt(int irq, void *dev_id) { struct clock_event_device *ce = dev_id; ce->event_handler(ce); return IRQ_HANDLED; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 30 | 100.00% | 2 | 100.00% |
Total | 30 | 100.00% | 2 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 23 | 88.46% | 3 | 75.00% |
Thomas Gleixner | 3 | 11.54% | 1 | 25.00% |
Total | 26 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 104 | 88.89% | 3 | 37.50% |
Thomas Gleixner | 8 | 6.84% | 3 | 37.50% |
Ralf Bächle | 3 | 2.56% | 1 | 12.50% |
Bernhard Walle | 2 | 1.71% | 1 | 12.50% |
Total | 117 | 100.00% | 8 | 100.00% |