mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2025-05-08 22:43:04 +00:00
rtl8188eu: Fix C90 comments in include/*.h
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
49ab4b6c4f
commit
f9d86b986b
81 changed files with 3809 additions and 3960 deletions
|
@ -29,17 +29,17 @@
|
|||
#define NUM_ACL 16
|
||||
|
||||
|
||||
//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.
|
||||
/* 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 {
|
||||
struct list_head list;
|
||||
u8 addr[ETH_ALEN];
|
||||
u8 valid;
|
||||
};
|
||||
|
||||
//mode=0, disable
|
||||
//mode=1, accept unless in deny list
|
||||
//mode=2, deny unless in accept list
|
||||
/* mode=0, disable */
|
||||
/* mode=1, accept unless in deny list */
|
||||
/* mode=2, deny unless in accept list */
|
||||
struct wlan_acl_pool {
|
||||
int mode;
|
||||
int num;
|
||||
|
@ -87,8 +87,8 @@ struct stainfo_stats {
|
|||
struct sta_info {
|
||||
|
||||
spinlock_t lock;
|
||||
struct list_head list; //free_sta_queue
|
||||
struct list_head hash_list; //sta_hash
|
||||
struct list_head list; /* free_sta_queue */
|
||||
struct list_head hash_list; /* sta_hash */
|
||||
|
||||
struct sta_xmit_priv sta_xmitpriv;
|
||||
struct sta_recv_priv sta_recvpriv;
|
||||
|
@ -102,13 +102,13 @@ struct sta_info {
|
|||
uint qos_option;
|
||||
u8 hwaddr[ETH_ALEN];
|
||||
|
||||
uint ieee8021x_blocked; //0: allowed, 1:blocked
|
||||
uint dot118021XPrivacy; //aes, tkip...
|
||||
uint ieee8021x_blocked; /* 0: allowed, 1:blocked */
|
||||
uint dot118021XPrivacy; /* aes, tkip... */
|
||||
union Keytype dot11tkiptxmickey;
|
||||
union Keytype dot11tkiprxmickey;
|
||||
union Keytype dot118021x_UncstKey;
|
||||
union pn48 dot11txpn; // PN48 used for Unicast xmit.
|
||||
union pn48 dot11rxpn; // PN48 used for Unicast recv.
|
||||
union pn48 dot11txpn; /* PN48 used for Unicast xmit. */
|
||||
union pn48 dot11rxpn; /* PN48 used for Unicast recv. */
|
||||
|
||||
|
||||
u8 bssrateset[16];
|
||||
|
@ -122,30 +122,30 @@ struct sta_info {
|
|||
u8 raid;
|
||||
u8 init_rate;
|
||||
u32 ra_mask;
|
||||
u8 wireless_mode; // NETWORK_TYPE
|
||||
u8 wireless_mode; /* NETWORK_TYPE */
|
||||
struct stainfo_stats sta_stats;
|
||||
|
||||
//for A-MPDU TX, ADDBA timeout check
|
||||
/* for A-MPDU TX, ADDBA timeout check */
|
||||
struct timer_list addba_retry_timer;
|
||||
|
||||
//for A-MPDU Rx reordering buffer control
|
||||
/* for A-MPDU Rx reordering buffer control */
|
||||
struct recv_reorder_ctrl recvreorder_ctrl[16];
|
||||
|
||||
//for A-MPDU Tx
|
||||
//unsigned char ampdu_txen_bitmap;
|
||||
/* for A-MPDU Tx */
|
||||
/* unsigned char ampdu_txen_bitmap; */
|
||||
u16 BA_starting_seqctrl[16];
|
||||
|
||||
|
||||
struct ht_priv htpriv;
|
||||
|
||||
//Notes:
|
||||
//STA_Mode:
|
||||
//curr_network(mlme_priv/security_priv/qos/ht) + sta_info: (STA & AP) CAP/INFO
|
||||
//scan_q: AP CAP/INFO
|
||||
/* Notes: */
|
||||
/* STA_Mode: */
|
||||
/* curr_network(mlme_priv/security_priv/qos/ht) + sta_info: (STA & AP) CAP/INFO */
|
||||
/* scan_q: AP CAP/INFO */
|
||||
|
||||
//AP_Mode:
|
||||
//curr_network(mlme_priv/security_priv/qos/ht) : AP CAP/INFO
|
||||
//sta_info: (AP & STA) CAP/INFO
|
||||
/* AP_Mode: */
|
||||
/* curr_network(mlme_priv/security_priv/qos/ht) : AP CAP/INFO */
|
||||
/* sta_info: (AP & STA) CAP/INFO */
|
||||
|
||||
#ifdef CONFIG_AP_MODE
|
||||
|
||||
|
@ -160,8 +160,8 @@ struct sta_info {
|
|||
u16 capability;
|
||||
int flags;
|
||||
|
||||
int dot8021xalg;//0:disable, 1:psk, 2:802.1x
|
||||
int wpa_psk;//0:disable, bit(0): WPA, bit(1):WPA2
|
||||
int dot8021xalg;/* 0:disable, 1:psk, 2:802.1x */
|
||||
int wpa_psk;/* 0:disable, bit(0): WPA, bit(1):WPA2 */
|
||||
int wpa_group_cipher;
|
||||
int wpa2_group_cipher;
|
||||
int wpa_pairwise_cipher;
|
||||
|
@ -178,13 +178,13 @@ struct sta_info {
|
|||
u8 no_ht_gf_set;
|
||||
u8 no_ht_set;
|
||||
u8 ht_20mhz_set;
|
||||
#endif // CONFIG_AP_MODE
|
||||
#endif /* CONFIG_AP_MODE */
|
||||
|
||||
unsigned int tx_ra_bitmap;
|
||||
u8 qos_info;
|
||||
|
||||
u8 max_sp_len;
|
||||
u8 uapsd_bk;//BIT(0): Delivery enabled, BIT(1): Trigger enabled
|
||||
u8 uapsd_bk;/* BIT(0): Delivery enabled, BIT(1): Trigger enabled */
|
||||
u8 uapsd_be;
|
||||
u8 uapsd_vi;
|
||||
u8 uapsd_vo;
|
||||
|
@ -193,55 +193,49 @@ struct sta_info {
|
|||
unsigned int sleepq_ac_len;
|
||||
|
||||
#ifdef CONFIG_P2P
|
||||
//p2p priv data
|
||||
/* p2p priv data */
|
||||
u8 is_p2p_device;
|
||||
u8 p2p_status_code;
|
||||
|
||||
//p2p client info
|
||||
/* p2p client info */
|
||||
u8 dev_addr[ETH_ALEN];
|
||||
//u8 iface_addr[ETH_ALEN];//= hwaddr[ETH_ALEN]
|
||||
u8 dev_cap;
|
||||
u16 config_methods;
|
||||
u8 primary_dev_type[8];
|
||||
u8 num_of_secdev_type;
|
||||
u8 secdev_types_list[32];// 32/8 == 4;
|
||||
u8 secdev_types_list[32];/* 32/8 == 4; */
|
||||
u16 dev_name_len;
|
||||
u8 dev_name[32];
|
||||
#endif //CONFIG_P2P
|
||||
#endif /* CONFIG_P2P */
|
||||
|
||||
u8 under_exist_checking;
|
||||
u8 keep_alive_trycnt;
|
||||
|
||||
#endif // CONFIG_AP_MODE
|
||||
#endif /* CONFIG_AP_MODE */
|
||||
|
||||
//for DM
|
||||
/* for DM */
|
||||
struct rssi_sta rssi_stat;
|
||||
|
||||
//
|
||||
// ================ODM Relative Info=======================
|
||||
// Please be care, dont declare too much structure here. It will cost memory * STA support num.
|
||||
//
|
||||
//
|
||||
// 2011/10/20 MH Add for ODM STA info.
|
||||
//
|
||||
// Driver Write
|
||||
u8 bValid; // record the sta status link or not?
|
||||
//u8 WirelessMode; //
|
||||
u8 IOTPeer; // Enum value. HT_IOT_PEER_E
|
||||
u8 rssi_level; //for Refresh RA mask
|
||||
// ODM Write
|
||||
//1 PHY_STATUS_INFO
|
||||
u8 RSSI_Path[4]; //
|
||||
/* */
|
||||
/* ================ODM Relative Info======================= */
|
||||
/* Please be care, dont declare too much structure here. It will cost memory * STA support num. */
|
||||
/* */
|
||||
/* */
|
||||
/* 2011/10/20 MH Add for ODM STA info. */
|
||||
/* */
|
||||
/* Driver Write */
|
||||
u8 bValid; /* record the sta status link or not? */
|
||||
u8 IOTPeer; /* Enum value. HT_IOT_PEER_E */
|
||||
u8 rssi_level; /* for Refresh RA mask */
|
||||
/* ODM Write */
|
||||
/* 1 PHY_STATUS_INFO */
|
||||
u8 RSSI_Path[4]; /* */
|
||||
u8 RSSI_Ave;
|
||||
u8 RXEVM[4];
|
||||
u8 RXSNR[4];
|
||||
|
||||
// ODM Write
|
||||
//1 TX_INFO (may changed by IC)
|
||||
//TX_INFO_T pTxInfo; // Define in IC folder. Move lower layer.
|
||||
//
|
||||
// ================ODM Relative Info=======================
|
||||
//
|
||||
/* ================ODM Relative Info======================= */
|
||||
/* */
|
||||
|
||||
/* To store the sequence number of received management frame */
|
||||
u16 RxMgmtFrameSeqNum;
|
||||
|
@ -351,9 +345,9 @@ struct sta_priv {
|
|||
u8 asoc_list_cnt;
|
||||
u8 auth_list_cnt;
|
||||
|
||||
unsigned int auth_to; //sec, time to expire in authenticating.
|
||||
unsigned int assoc_to; //sec, time to expire before associating.
|
||||
unsigned int expire_to; //sec , time to expire after associated.
|
||||
unsigned int auth_to; /* sec, time to expire in authenticating. */
|
||||
unsigned int assoc_to; /* sec, time to expire before associating. */
|
||||
unsigned int expire_to; /* sec , time to expire after associated. */
|
||||
|
||||
/* pointers to STA info; based on allocated AID or NULL if AID free
|
||||
* AID is in the range 1-2007, so sta_aid[0] corresponders to AID 1
|
||||
|
@ -361,8 +355,8 @@ struct sta_priv {
|
|||
*/
|
||||
struct sta_info *sta_aid[NUM_STA];
|
||||
|
||||
u16 sta_dz_bitmap;//only support 15 stations, staion aid bitmap for sleeping sta.
|
||||
u16 tim_bitmap;//only support 15 stations, aid=0~15 mapping bit0~bit15
|
||||
u16 sta_dz_bitmap;/* only support 15 stations, staion aid bitmap for sleeping sta. */
|
||||
u16 tim_bitmap;/* only support 15 stations, aid=0~15 mapping bit0~bit15 */
|
||||
|
||||
u16 max_num_sta;
|
||||
|
||||
|
@ -404,4 +398,4 @@ extern u32 rtw_init_bcmc_stainfo(struct adapter* padapter);
|
|||
extern struct sta_info* rtw_get_bcmc_stainfo(struct adapter* padapter);
|
||||
extern u8 rtw_access_ctrl(struct adapter *padapter, u8 *mac_addr);
|
||||
|
||||
#endif //_STA_INFO_H_
|
||||
#endif /* _STA_INFO_H_ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue