s390/delay: remove udelay_simple()
[sfrench/cifs-2.6.git] / arch / s390 / lib / delay.c
index 928b1dbe182cf676ea9eda5b3823704655f39782..f289afeb3f3169c26723f6de6f9f42eba438c2b1 100644 (file)
 #include <asm/div64.h>
 #include <asm/idle.h>
 
-static DEFINE_STATIC_KEY_FALSE(udelay_ready);
-
-void __init udelay_enable(void)
-{
-       static_branch_enable(&udelay_ready);
-}
-
 void __delay(unsigned long loops)
 {
         /*
@@ -39,40 +32,25 @@ void __delay(unsigned long loops)
 }
 EXPORT_SYMBOL(__delay);
 
-static void delay_loop(unsigned long delta, bool simple)
+static void delay_loop(unsigned long delta)
 {
        unsigned long end;
 
-       if (static_branch_likely(&udelay_ready) && !simple) {
-               end = get_tod_clock_monotonic() + delta;
-               while (!tod_after(get_tod_clock_monotonic(), end))
-                       cpu_relax();
-       } else {
-               end = get_tod_clock() + delta;
-               while (!tod_after(get_tod_clock(), end))
-                       cpu_relax();
-       }
+       end = get_tod_clock_monotonic() + delta;
+       while (!tod_after(get_tod_clock_monotonic(), end))
+               cpu_relax();
 }
 
 void __udelay(unsigned long usecs)
 {
-       delay_loop(usecs << 12, 0);
+       delay_loop(usecs << 12);
 }
 EXPORT_SYMBOL(__udelay);
 
-/*
- * Simple udelay variant. To be used on startup and reboot
- * when the interrupt handler isn't working.
- */
-void udelay_simple(unsigned long usecs)
-{
-       delay_loop(usecs << 12, 1);
-}
-
 void __ndelay(unsigned long nsecs)
 {
        nsecs <<= 9;
        do_div(nsecs, 125);
-       delay_loop(nsecs, 0);
+       delay_loop(nsecs);
 }
 EXPORT_SYMBOL(__ndelay);