]> git.ipfire.org Git - people/ms/u-boot.git/blobdiff - lib_microblaze/time.c
rename CFG_ macros to CONFIG_SYS
[people/ms/u-boot.git] / lib_microblaze / time.c
index 3fa1b112627664d9fefa13bc1d5aea13bc40796d..cbb43414f9cf860b0ad83bb899012e2bbb58d454 100644 (file)
 
 #include <common.h>
 
+#ifdef CONFIG_SYS_TIMER_0
 void udelay (unsigned long usec)
 {
        int i;
        i = get_timer (0);
        while ((get_timer (0) - i) < (usec / 1000)) ;
 }
+#else
+void udelay (unsigned long usec)
+{
+       unsigned int i;
+       for (i = 0; i < (usec * CONFIG_XILINX_CLOCK_FREQ / 10000000); i++);
+}
+#endif