diff options
Diffstat (limited to 'cpu/arm926ejs/interrupts.c')
| -rw-r--r-- | cpu/arm926ejs/interrupts.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/cpu/arm926ejs/interrupts.c b/cpu/arm926ejs/interrupts.c index 10841fd0a..377066028 100644 --- a/cpu/arm926ejs/interrupts.c +++ b/cpu/arm926ejs/interrupts.c @@ -293,7 +293,7 @@ ulong get_timer_masked (void)  /* waits specified delay value and resets timestamp */  void udelay_masked (unsigned long usec)  { -	ulong tmo, tmp; +	ulong tmo;  	if(usec >= 1000){               /* if "big" number, spread normalization to seconds */  		tmo = usec / 1000;      /* start to normalize for usec to ticks per sec */ |