Release 4.7 include/clocksource/timer-sp804.h
#ifndef __CLKSOURCE_TIMER_SP804_H
#define __CLKSOURCE_TIMER_SP804_H
struct clk;
void __sp804_clocksource_and_sched_clock_init(void __iomem *,
const char *, struct clk *, int);
void __sp804_clockevents_init(void __iomem *, unsigned int,
struct clk *, const char *);
void sp804_timer_disable(void __iomem *);
static inline void sp804_clocksource_init(void __iomem *base, const char *name)
{
__sp804_clocksource_and_sched_clock_init(base, name, NULL, 0);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
rob herring | rob herring | 28 | 100.00% | 2 | 100.00% |
| Total | 28 | 100.00% | 2 | 100.00% |
static inline void sp804_clocksource_and_sched_clock_init(void __iomem *base,
const char *name)
{
__sp804_clocksource_and_sched_clock_init(base, name, NULL, 1);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
rob herring | rob herring | 28 | 100.00% | 2 | 100.00% |
| Total | 28 | 100.00% | 2 | 100.00% |
static inline void sp804_clockevents_init(void __iomem *base, unsigned int irq, const char *name)
{
__sp804_clockevents_init(base, irq, NULL, name);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
rob herring | rob herring | 18 | 56.25% | 1 | 33.33% |
russell king | russell king | 14 | 43.75% | 2 | 66.67% |
| Total | 32 | 100.00% | 3 | 100.00% |
#endif
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
rob herring | rob herring | 103 | 71.53% | 2 | 28.57% |
russell king | russell king | 25 | 17.36% | 3 | 42.86% |
sudeep holla | sudeep holla | 16 | 11.11% | 2 | 28.57% |
| Total | 144 | 100.00% | 7 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.