diff options
Diffstat (limited to 'cpu/arm925t/timer.c')
| -rw-r--r-- | cpu/arm925t/timer.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/cpu/arm925t/timer.c b/cpu/arm925t/timer.c index c16ef2577..7dfe2b564 100644 --- a/cpu/arm925t/timer.c +++ b/cpu/arm925t/timer.c @@ -81,7 +81,7 @@ void set_timer (ulong t)  }  /* delay x useconds AND preserve advance timestamp value */ -void udelay (unsigned long usec) +void __udelay (unsigned long usec)  {  	int32_t tmo = usec * (TIMER_CLOCK / 1000) / 1000;  	uint32_t now, last = __raw_readl(CONFIG_SYS_TIMERBASE + READ_TIM); |