sandbox/tegra2: fix typo in autocomplete define
[platform/kernel/u-boot.git] / lib / time.c
index a309c26..6e2937b 100644 (file)
@@ -41,3 +41,9 @@ void udelay(unsigned long usec)
                usec -= kv;
        } while(usec);
 }
+
+void mdelay(unsigned long msec)
+{
+       while (msec--)
+               udelay(1000);
+}