diff options
Diffstat (limited to 'arch/arm/include/asm/arch_timer.h')
-rw-r--r-- | arch/arm/include/asm/arch_timer.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch_timer.h b/arch/arm/include/asm/arch_timer.h new file mode 100644 index 000000000000..ed2e95d46e29 --- /dev/null +++ b/arch/arm/include/asm/arch_timer.h | |||
@@ -0,0 +1,19 @@ | |||
1 | #ifndef __ASMARM_ARCH_TIMER_H | ||
2 | #define __ASMARM_ARCH_TIMER_H | ||
3 | |||
4 | #ifdef CONFIG_ARM_ARCH_TIMER | ||
5 | int arch_timer_of_register(void); | ||
6 | int arch_timer_sched_clock_init(void); | ||
7 | #else | ||
8 | static inline int arch_timer_of_register(void) | ||
9 | { | ||
10 | return -ENXIO; | ||
11 | } | ||
12 | |||
13 | static inline int arch_timer_sched_clock_init(void) | ||
14 | { | ||
15 | return -ENXIO; | ||
16 | } | ||
17 | #endif | ||
18 | |||
19 | #endif | ||