mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-05-08 22:43:04 +00:00
rtl8188eu: Convert typedef for _lock to spinlock_t
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
5f133c3764
commit
7b01fe6191
10 changed files with 27 additions and 30 deletions
|
@ -86,7 +86,7 @@ struct stainfo_stats {
|
|||
|
||||
struct sta_info {
|
||||
|
||||
_lock lock;
|
||||
spinlock_t lock;
|
||||
_list list; //free_sta_queue
|
||||
_list hash_list; //sta_hash
|
||||
//_list asoc_list; //20061114
|
||||
|
@ -339,7 +339,7 @@ struct sta_priv {
|
|||
u8 *pstainfo_buf;
|
||||
_queue free_sta_queue;
|
||||
|
||||
_lock sta_hash_lock;
|
||||
spinlock_t sta_hash_lock;
|
||||
_list sta_hash[NUM_STA];
|
||||
int asoc_sta_count;
|
||||
_queue sleep_q;
|
||||
|
@ -351,8 +351,8 @@ struct sta_priv {
|
|||
#ifdef CONFIG_AP_MODE
|
||||
_list asoc_list;
|
||||
_list auth_list;
|
||||
_lock asoc_list_lock;
|
||||
_lock auth_list_lock;
|
||||
spinlock_t asoc_list_lock;
|
||||
spinlock_t auth_list_lock;
|
||||
u8 asoc_list_cnt;
|
||||
u8 auth_list_cnt;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue