rtl8188eu: Remove most typedef statements from include/osdep_service.h

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2015-03-16 08:54:18 -05:00
parent 26b163f24f
commit e2285839e9
46 changed files with 531 additions and 733 deletions

View file

@ -33,7 +33,7 @@
//if mode ==0, then the sta is allowed once the addr is hit.
//if mode ==1, then the sta is rejected once the addr is non-hit.
struct rtw_wlan_acl_node {
_list list;
struct list_head list;
u8 addr[ETH_ALEN];
u8 valid;
};
@ -45,7 +45,7 @@ struct wlan_acl_pool {
int mode;
int num;
struct rtw_wlan_acl_node aclnode[NUM_ACL];
_queue acl_node_q;
struct __queue acl_node_q;
};
typedef struct _RSSI_STA{
@ -87,18 +87,15 @@ struct stainfo_stats {
struct sta_info {
_lock lock;
_list list; //free_sta_queue
_list hash_list; //sta_hash
//_list asoc_list; //20061114
//_list sleep_list;//sleep_q
//_list wakeup_list;//wakeup_q
spinlock_t lock;
struct list_head list; //free_sta_queue
struct list_head hash_list; //sta_hash
struct adapter *padapter;
struct sta_xmit_priv sta_xmitpriv;
struct sta_recv_priv sta_recvpriv;
_queue sleep_q;
struct __queue sleep_q;
unsigned int sleepq_len;
uint state;
@ -134,7 +131,7 @@ struct sta_info {
struct stainfo_stats sta_stats;
//for A-MPDU TX, ADDBA timeout check
_timer addba_retry_timer;
struct timer_list addba_retry_timer;
//for A-MPDU Rx reordering buffer control
struct recv_reorder_ctrl recvreorder_ctrl[16];
@ -156,8 +153,8 @@ struct sta_info {
#ifdef CONFIG_AP_MODE
_list asoc_list;
_list auth_list;
struct list_head asoc_list;
struct list_head auth_list;
unsigned int expire_to;
unsigned int auth_seq;
@ -353,22 +350,21 @@ struct sta_priv {
u8 *pallocated_stainfo_buf;
u8 *pstainfo_buf;
_queue free_sta_queue;
struct __queue free_sta_queue;
_lock sta_hash_lock;
_list sta_hash[NUM_STA];
spinlock_t sta_hash_lock;
struct list_head sta_hash[NUM_STA];
int asoc_sta_count;
_queue sleep_q;
_queue wakeup_q;
struct __queue sleep_q;
struct __queue wakeup_q;
struct adapter *padapter;
#ifdef CONFIG_AP_MODE
_list asoc_list;
_list auth_list;
_lock asoc_list_lock;
_lock auth_list_lock;
struct list_head asoc_list;
struct list_head auth_list;
spinlock_t asoc_list_lock;
spinlock_t auth_list_lock;
u8 asoc_list_cnt;
u8 auth_list_cnt;