dect
/
linux-2.6
Archived
13
0
Fork 0

staging: rtl8192e: Convert typedef HT_SPEC_VER to enum ht_spec_ver

Remove typedef from enum.
Rename enum.
Rename uses.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2011-07-19 19:05:23 -05:00
parent 11b639c3e2
commit d2eff5c3bf
1 changed files with 4 additions and 4 deletions

View File

@ -201,10 +201,10 @@ struct mimops_ctrl {
u8 Reserved:6;
};
typedef enum _HT_SPEC_VER{
enum ht_spec_ver {
HT_SPEC_VER_IEEE = 0,
HT_SPEC_VER_EWC = 1,
} HT_SPEC_VER, *PHT_SPEC_VER;
};
typedef enum _HT_AGGRE_MODE_E{
HT_AGG_AUTO = 0,
@ -229,7 +229,7 @@ struct rt_hi_throughput {
u8 bRegSuppCCK;
u8 bCurSuppCCK;
HT_SPEC_VER ePeerHTSpecVer;
enum ht_spec_ver ePeerHTSpecVer;
struct ht_capab_ele SelfHTCap;
@ -343,7 +343,7 @@ struct bss_ht {
u8 bdHTInfoBuf[32];
u16 bdHTInfoLen;
HT_SPEC_VER bdHTSpecVer;
enum ht_spec_ver bdHTSpecVer;
enum ht_channel_width bdBandWidth;
u8 bdRT2RTAggregation;