summaryrefslogtreecommitdiffstats
path: root/lib/time.c
diff options
context:
space:
mode:
authorAnatolij Gustschin <agust@denx.de>2011-10-12 02:31:39 +0000
committerWolfgang Denk <wd@denx.de>2011-10-22 01:16:08 +0200
commitc4c9fbebae6a62d538817d0ccee698adaafc5d66 (patch)
tree91e9e2b82568b32bf3135bdc25d0a852f6c31095 /lib/time.c
parent712fbcf384b7fbe6118325f21dad98150b24f13b (diff)
downloadtalos-obmc-uboot-c4c9fbebae6a62d538817d0ccee698adaafc5d66.tar.gz
talos-obmc-uboot-c4c9fbebae6a62d538817d0ccee698adaafc5d66.zip
consolidate mdelay by providing a common function for all users
There are several mdelay() definitions in the driver and board code. Remove them all and provide a common mdelay() in lib/time.c. Signed-off-by: Anatolij Gustschin <agust@denx.de> Acked-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'lib/time.c')
-rw-r--r--lib/time.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/time.c b/lib/time.c
index a309c2613a..6e2937b8e7 100644
--- a/lib/time.c
+++ b/lib/time.c
@@ -41,3 +41,9 @@ void udelay(unsigned long usec)
usec -= kv;
} while(usec);
}
+
+void mdelay(unsigned long msec)
+{
+ while (msec--)
+ udelay(1000);
+}
OpenPOWER on IntegriCloud