staging: r8188eu: Remove wrapper rtw_sleep_schedulable()
[linux-2.6-microblaze.git] / drivers / staging / r8188eu / os_dep / osdep_service.c
index 79f12b0..9f097f2 100644 (file)
@@ -116,18 +116,6 @@ inline s32 rtw_get_passing_time_ms(u32 start)
        return rtw_systime_to_ms(jiffies-start);
 }
 
-void rtw_sleep_schedulable(int ms)
-{
-       u32 delta;
-
-       delta = (ms * HZ)/1000;/* ms) */
-       if (delta == 0)
-               delta = 1;/*  1 ms */
-       set_current_state(TASK_INTERRUPTIBLE);
-       if (schedule_timeout(delta) != 0)
-               return;
-}
-
 void rtw_usleep_os(int us)
 {
        if (1 < (us/1000))