]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - lib/time.c
microblaze: bootm: Fix coding style issues
[karo-tx-uboot.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);
+}