summaryrefslogtreecommitdiff
path: root/cpu/arm926ejs/mx27/timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpu/arm926ejs/mx27/timer.c')
-rw-r--r--cpu/arm926ejs/mx27/timer.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/cpu/arm926ejs/mx27/timer.c b/cpu/arm926ejs/mx27/timer.c
index d22252e13..90110581e 100644
--- a/cpu/arm926ejs/mx27/timer.c
+++ b/cpu/arm926ejs/mx27/timer.c
@@ -176,7 +176,7 @@ void set_timer (ulong t)
timestamp = time_to_tick(t);
}
-/* delay x useconds AND perserve advance timstamp value */
+/* delay x useconds AND preserve advance timstamp value */
void udelay (unsigned long usec)
{
unsigned long long tmp;
@@ -188,4 +188,3 @@ void udelay (unsigned long usec)
while (get_ticks() < tmp) /* loop till event */
/*NOP*/;
}
-