rtl8188eu: Remove wrappers around spin_lock() and spin_unlock()

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2018-12-24 15:25:35 -06:00
parent 45a86628d2
commit 4a5aa7a8b7
5 changed files with 15 additions and 39 deletions

View file

@ -716,26 +716,6 @@ void _rtw_mutex_free(_mutex *pmutex)
#endif
}
void _rtw_spinlock(_lock *plock)
{
spin_lock(plock);
}
void _rtw_spinunlock(_lock *plock)
{
spin_unlock(plock);
}
void _rtw_spinlock_ex(_lock *plock)
{
spin_lock(plock);
}
void _rtw_spinunlock_ex(_lock *plock)
{
spin_unlock(plock);
}
void _rtw_init_queue(_queue *pqueue)
{
INIT_LIST_HEAD(&(pqueue->queue));