/* * 8253/PIT functions * */ #include <linux/clockchips.h> #include <linux/init.h> #include <linux/timex.h> #include <linux/i8253.h> #include <asm/hpet.h> #include <asm/time.h> #include <asm/smp.h> /* * HPET replaces the PIT, when enabled. So we need to know, which of * the two timers is used */ struct clock_event_device *global_clock_event;
void __init setup_pit_timer(void) { clockevent_i8253_init(true); global_clock_event = &i8253_clockevent; }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Thomas Gleixner | 17 | 94.44% | 2 | 66.67% |
John Stultz | 1 | 5.56% | 1 | 33.33% |
Total | 18 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
John Stultz | 21 | 61.76% | 2 | 33.33% |
Thomas Gleixner | 6 | 17.65% | 2 | 33.33% |
Viresh Kumar | 5 | 14.71% | 1 | 16.67% |
Russell King | 2 | 5.88% | 1 | 16.67% |
Total | 34 | 100.00% | 6 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Thomas Gleixner | 37 | 40.66% | 5 | 29.41% |
John Stultz | 35 | 38.46% | 4 | 23.53% |
Viresh Kumar | 5 | 5.49% | 1 | 5.88% |
Ralf Bächle | 4 | 4.40% | 2 | 11.76% |
Arnd Bergmann | 3 | 3.30% | 1 | 5.88% |
Jaswinder Singh Rajput | 3 | 3.30% | 1 | 5.88% |
Russell King | 2 | 2.20% | 1 | 5.88% |
Dave Jones | 1 | 1.10% | 1 | 5.88% |
Paul Gortmaker | 1 | 1.10% | 1 | 5.88% |
Total | 91 | 100.00% | 17 | 100.00% |