mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-04 09:34:12 +08:00
fb8a99f9f6
All mainline platforms using the ARM architected timers are DT only. As such, remove the ad-hoc support that is not longer needed anymore. Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
20 lines
324 B
C
20 lines
324 B
C
#ifndef __ASMARM_ARCH_TIMER_H
|
|
#define __ASMARM_ARCH_TIMER_H
|
|
|
|
#ifdef CONFIG_ARM_ARCH_TIMER
|
|
int arch_timer_of_register(void);
|
|
int arch_timer_sched_clock_init(void);
|
|
#else
|
|
static inline int arch_timer_of_register(void)
|
|
{
|
|
return -ENXIO;
|
|
}
|
|
|
|
static inline int arch_timer_sched_clock_init(void)
|
|
{
|
|
return -ENXIO;
|
|
}
|
|
#endif
|
|
|
|
#endif
|