Merge branch 'master' of /home/wd/git/u-boot/custodians
[oweals/u-boot.git] / lib / time.c
index a309c2613ab06900aae06aae9ceb7b44bd224346..6e2937b8e726d4f2ffc009d91f6f4ff53a432c6f 100644 (file)
@@ -41,3 +41,9 @@ void udelay(unsigned long usec)
                usec -= kv;
        } while(usec);
 }
+
+void mdelay(unsigned long msec)
+{
+       while (msec--)
+               udelay(1000);
+}