VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / arch / sh / lib / delay.c
index e1fcc97..5504546 100644 (file)
@@ -33,3 +33,9 @@ void __udelay(unsigned long usecs)
 {
        __const_udelay(usecs * 0x000010c6);  /* 2**32 / 1000000 */
 }
+
+void __ndelay(unsigned long nsecs)
+{
+       __const_udelay(nsecs * 0x00000005);
+}
+