dect
/
linux-2.6
Archived
13
0
Fork 0

staging: rtl8192e: Convert typedef ECW to union ecw

Remove typedef from union.
Rename union.
Rename uses.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2011-07-19 10:31:43 -05:00
parent 44a4004670
commit a33be1e842
1 changed files with 3 additions and 3 deletions

View File

@ -387,14 +387,14 @@ union aci_aifsn {
}f;
};
typedef union _ECW{
union ecw {
u8 charData;
struct
{
u8 ECWmin:4;
u8 ECWmax:4;
}f;
}ECW, *PECW;
};
typedef union _AC_PARAM{
u32 longData;
@ -403,7 +403,7 @@ typedef union _AC_PARAM{
struct
{
union aci_aifsn AciAifsn;
ECW Ecw;
union ecw Ecw;
u16 TXOPLimit;
}f;
}AC_PARAM, *PAC_PARAM;