staging: rtl8192e: Convert typedef BSS_HT to struct bss_ht

Remove typedef from struct.
Rename struct.
Rename uses.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2011-07-18 20:26:49 -05:00
parent 9801b9f5d7
commit a15e76ad06
3 changed files with 5 additions and 5 deletions

View file

@ -334,7 +334,7 @@ struct rt_htinfo_sta_entry {
typedef struct _BSS_HT{
struct bss_ht {
u8 bdSupportHT;
@ -350,7 +350,7 @@ typedef struct _BSS_HT{
u8 bdRT2RTLongSlotTime;
u8 RT2RT_HT_Mode;
u8 bdHT1R;
} __attribute__ ((packed)) BSS_HT, *PBSS_HT;
};
typedef struct _MIMO_RSSI{
u32 EnableAntenna;

View file

@ -990,7 +990,7 @@ void HTInitializeHTInfo(struct rtllib_device* ieee)
RegHTSuppRateSets[4] = 0x01;
}
}
void HTInitializeBssDesc(PBSS_HT pBssHT)
void HTInitializeBssDesc(struct bss_ht *pBssHT)
{
pBssHT->bdSupportHT = false;

View file

@ -1688,7 +1688,7 @@ struct rtllib_network {
u8 Turbo_Enable;
u16 CountryIeLen;
u8 CountryIeBuf[MAX_IE_LEN];
BSS_HT bssht;
struct bss_ht bssht;
bool broadcom_cap_exist;
bool realtek_cap_exit;
bool marvell_cap_exist;
@ -2898,7 +2898,7 @@ extern void HTConstructInfoElement(struct rtllib_device* ieee, u8* posHTInfo, u8
extern void HTConstructRT2RTAggElement(struct rtllib_device* ieee, u8* posRT2RTAgg, u8* len);
extern void HTOnAssocRsp(struct rtllib_device *ieee);
extern void HTInitializeHTInfo(struct rtllib_device* ieee);
extern void HTInitializeBssDesc(PBSS_HT pBssHT);
extern void HTInitializeBssDesc(struct bss_ht *pBssHT);
extern void HTResetSelfAndSavePeerSetting(struct rtllib_device* ieee, struct rtllib_network * pNetwork);
extern void HTUpdateSelfAndPeerSetting(struct rtllib_device* ieee, struct rtllib_network * pNetwork);
extern u8 HTGetHighestMCSRate(struct rtllib_device* ieee, u8* pMCSRateSet, u8* pMCSFilter);