summaryrefslogtreecommitdiffstats
path: root/cpu/arm926ejs
diff options
context:
space:
mode:
authorwdenk <wdenk>2004-03-14 22:25:36 +0000
committerwdenk <wdenk>2004-03-14 22:25:36 +0000
commit42dfe7a1844cbad7114038aaf03828acb7a84414 (patch)
treed33893d34d2a97aa23257703733dbc9d86d48278 /cpu/arm926ejs
parent855a496fe9ba431772f1ff1aef21a5c001288bb0 (diff)
downloadbarebox-42dfe7a1844cbad7114038aaf03828acb7a84414.tar.gz
barebox-42dfe7a1844cbad7114038aaf03828acb7a84414.tar.xz
Code cleanup; make several boards compile & link.
Diffstat (limited to 'cpu/arm926ejs')
-rw-r--r--cpu/arm926ejs/interrupts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/arm926ejs/interrupts.c b/cpu/arm926ejs/interrupts.c
index 10841fd0a1..3770660282 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 */