Merge tag 'dm-3.19-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/device...
[deliverable/linux.git] / arch / arm / include / asm / hardware / timer-sp.h
CommitLineData
7a0eca71
RH
1struct clk;
2
a7bf6162 3void __sp804_clocksource_and_sched_clock_init(void __iomem *,
7a0eca71
RH
4 const char *, struct clk *, int);
5void __sp804_clockevents_init(void __iomem *, unsigned int,
6 struct clk *, const char *);
a7bf6162
RH
7
8static inline void sp804_clocksource_init(void __iomem *base, const char *name)
9{
7a0eca71 10 __sp804_clocksource_and_sched_clock_init(base, name, NULL, 0);
a7bf6162
RH
11}
12
13static inline void sp804_clocksource_and_sched_clock_init(void __iomem *base,
14 const char *name)
15{
7a0eca71 16 __sp804_clocksource_and_sched_clock_init(base, name, NULL, 1);
a7bf6162
RH
17}
18
7a0eca71
RH
19static inline void sp804_clockevents_init(void __iomem *base, unsigned int irq, const char *name)
20{
21 __sp804_clockevents_init(base, irq, NULL, name);
22
23}
This page took 0.297121 seconds and 5 git commands to generate.