Linux 3.11-rc3
[cris-mirror.git] / arch / arm / include / asm / hardware / timer-sp.h
blobbb28af7c32deb04326418c6ba09675334bbe5cec
1 struct clk;
3 void __sp804_clocksource_and_sched_clock_init(void __iomem *,
4 const char *, struct clk *, int);
5 void __sp804_clockevents_init(void __iomem *, unsigned int,
6 struct clk *, const char *);
8 static inline void sp804_clocksource_init(void __iomem *base, const char *name)
10 __sp804_clocksource_and_sched_clock_init(base, name, NULL, 0);
13 static inline void sp804_clocksource_and_sched_clock_init(void __iomem *base,
14 const char *name)
16 __sp804_clocksource_and_sched_clock_init(base, name, NULL, 1);
19 static inline void sp804_clockevents_init(void __iomem *base, unsigned int irq, const char *name)
21 __sp804_clockevents_init(base, irq, NULL, name);