]> git.sur5r.net Git - u-boot/blobdiff - lib_microblaze/time.c
Net: Clean up LAN91C96 Support
[u-boot] / lib_microblaze / time.c
index 0fef834992a55d15305d61d07734cdec4a503bfa..da016a0015c0a156fa4895203c4365511b3110f1 100644 (file)
 
 #include <common.h>
 
-#ifdef CFG_TIMER_0
-void udelay (unsigned long usec)
+#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)
+void __udelay (unsigned long usec)
 {
        unsigned int i;
-       for (i = 0; i < (usec * XILINX_CLOCK_FREQ / 10000000); i++);
+       for (i = 0; i < (usec * CONFIG_XILINX_CLOCK_FREQ / 10000000); i++);
 }
 #endif