// SPDX-License-Identifier: GPL-2.0 /* * 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 | 18 | 100.00% | 2 | 100.00% |
Total | 18 | 100.00% | 2 | 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 | 38 | 41.30% | 5 | 27.78% |
John Stultz | 34 | 36.96% | 4 | 22.22% |
Viresh Kumar | 5 | 5.43% | 1 | 5.56% |
Ralf Bächle | 4 | 4.35% | 2 | 11.11% |
Arnd Bergmann | 3 | 3.26% | 1 | 5.56% |
Jaswinder Singh Rajput | 3 | 3.26% | 1 | 5.56% |
Russell King | 2 | 2.17% | 1 | 5.56% |
Paul Gortmaker | 1 | 1.09% | 1 | 5.56% |
Dave Jones | 1 | 1.09% | 1 | 5.56% |
Greg Kroah-Hartman | 1 | 1.09% | 1 | 5.56% |
Total | 92 | 100.00% | 18 | 100.00% |