Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef BSS_HT to struct bss_ht
Browse files Browse the repository at this point in the history
Remove typedef from struct.
Rename struct.
Rename uses.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
  • Loading branch information
Larry Finger authored and Larry Finger committed Aug 24, 2011
1 parent 9801b9f commit a15e76a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/rtl8192e/rtl819x_HT.h
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ struct rt_htinfo_sta_entry {



typedef struct _BSS_HT{
struct bss_ht {

u8 bdSupportHT;

Expand All @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion drivers/staging/rtl8192e/rtl819x_HTProc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions drivers/staging/rtl8192e/rtllib.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit a15e76a

Please sign in to comment.