OSDN Git Service

Remove msleep() wrapper
[android-x86/external-modules-rtl8723au.git] / os_dep / osdep_service.c
index 0ccf698..c6b543b 100644 (file)
@@ -97,25 +97,6 @@ void _rtw_mfree(u8 *pbuf, u32 sz)
 }
 
 
-void   _rtw_mutex_init(_mutex *pmutex)
-{
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37))
-       mutex_init(pmutex);
-#else
-       init_MUTEX(pmutex);
-#endif
-}
-
-void   _rtw_mutex_free(_mutex *pmutex);
-void   _rtw_mutex_free(_mutex *pmutex)
-{
-#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,37))
-       mutex_destroy(pmutex);
-#else
-#endif
-}
-
-
 void   _rtw_init_queue(_queue  *pqueue)
 {
        INIT_LIST_HEAD(&(pqueue->queue));
@@ -183,11 +164,6 @@ void rtw_sleep_schedulable(int ms)
 }
 
 
-void rtw_msleep_os(int ms)
-{
-       msleep((unsigned int)ms);
-}
-
 void rtw_usleep_os(int us)
 {
       // msleep((unsigned int)us);