mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-10 15:39:38 +00:00
rtl8188eu: Remove typedef statement from include/sta_info.h
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
22afcbab09
commit
fa43f604b9
1 changed files with 3 additions and 3 deletions
|
@ -48,13 +48,13 @@ struct wlan_acl_pool {
|
||||||
struct __queue acl_node_q;
|
struct __queue acl_node_q;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct _RSSI_STA{
|
struct rssi_sta {
|
||||||
s32 UndecoratedSmoothedPWDB;
|
s32 UndecoratedSmoothedPWDB;
|
||||||
s32 UndecoratedSmoothedCCK;
|
s32 UndecoratedSmoothedCCK;
|
||||||
s32 UndecoratedSmoothedOFDM;
|
s32 UndecoratedSmoothedOFDM;
|
||||||
u64 PacketMap;
|
u64 PacketMap;
|
||||||
u8 ValidBit;
|
u8 ValidBit;
|
||||||
}RSSI_STA, *PRSSI_STA;
|
};
|
||||||
|
|
||||||
struct stainfo_stats {
|
struct stainfo_stats {
|
||||||
|
|
||||||
|
@ -232,7 +232,7 @@ struct sta_info {
|
||||||
int tx_vo_cnt;
|
int tx_vo_cnt;
|
||||||
#endif
|
#endif
|
||||||
/* for DM */
|
/* for DM */
|
||||||
RSSI_STA rssi_stat;
|
struct rssi_sta rssi_stat;
|
||||||
|
|
||||||
/* ODM_STA_INFO_T */
|
/* ODM_STA_INFO_T */
|
||||||
/* ================ODM Relative Info======================= */
|
/* ================ODM Relative Info======================= */
|
||||||
|
|
Loading…
Reference in a new issue