/* * Generic MMIO clocksource support * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ #include <linux/clocksource.h> #include <linux/errno.h> #include <linux/init.h> #include <linux/slab.h> struct clocksource_mmio { void __iomem *reg; struct clocksource clksrc; };
static inline struct clocksource_mmio *to_mmio_clksrc(struct clocksource *c) { return container_of(c, struct clocksource_mmio, clksrc); }Contributors
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 25 | 100.00% | 1 | 100.00% |
Total | 25 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 20 | 83.33% | 1 | 33.33% |
Xiubo Li | 2 | 8.33% | 1 | 33.33% |
Thomas Gleixner | 2 | 8.33% | 1 | 33.33% |
Total | 24 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 21 | 72.41% | 1 | 25.00% |
Xiubo Li | 6 | 20.69% | 2 | 50.00% |
Thomas Gleixner | 2 | 6.90% | 1 | 25.00% |
Total | 29 | 100.00% | 4 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 20 | 83.33% | 1 | 33.33% |
Thomas Gleixner | 2 | 8.33% | 1 | 33.33% |
Xiubo Li | 2 | 8.33% | 1 | 33.33% |
Total | 24 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 23 | 79.31% | 1 | 33.33% |
Xiubo Li | 4 | 13.79% | 1 | 33.33% |
Thomas Gleixner | 2 | 6.90% | 1 | 33.33% |
Total | 29 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 136 | 98.55% | 1 | 33.33% |
Linus Walleij | 1 | 0.72% | 1 | 33.33% |
Thomas Gleixner | 1 | 0.72% | 1 | 33.33% |
Total | 138 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp |
Russell King | 273 | 91.92% | 1 | 20.00% |
Xiubo Li | 14 | 4.71% | 2 | 40.00% |
Thomas Gleixner | 9 | 3.03% | 1 | 20.00% |
Linus Walleij | 1 | 0.34% | 1 | 20.00% |
Total | 297 | 100.00% | 5 | 100.00% |