mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-06-23 16:44:20 +00:00
rtl8188eu: Remove wrapper around spin_lock_init
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
471d5a14a8
commit
dc4dbd3a7c
11 changed files with 18 additions and 24 deletions
|
@ -656,11 +656,6 @@ void _rtw_mutex_free(_mutex *pmutex)
|
|||
#endif
|
||||
}
|
||||
|
||||
void _rtw_spinlock_init(_lock *plock)
|
||||
{
|
||||
spin_lock_init(plock);
|
||||
}
|
||||
|
||||
void _rtw_spinlock_free(_lock *plock)
|
||||
{
|
||||
}
|
||||
|
@ -670,7 +665,7 @@ void _rtw_init_queue(_queue *pqueue)
|
|||
|
||||
_rtw_init_listhead(&(pqueue->queue));
|
||||
|
||||
_rtw_spinlock_init(&(pqueue->lock));
|
||||
spin_lock_init(&(pqueue->lock));
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue