rtl8188eu: Convert typedef for _lock to spinlock_t

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2013-07-24 15:00:47 -05:00
parent 5f133c3764
commit 7b01fe6191
10 changed files with 27 additions and 30 deletions

View file

@ -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;