Commit a33be1e8 authored by Larry Finger's avatar Larry Finger

staging: rtl8192e: Convert typedef ECW to union ecw

Remove typedef from union.
Rename union.
Rename uses.
Signed-off-by: default avatarLarry Finger <Larry.Finger@lwfinger.net>
parent 44a40046
...@@ -387,14 +387,14 @@ union aci_aifsn { ...@@ -387,14 +387,14 @@ union aci_aifsn {
}f; }f;
}; };
typedef union _ECW{ union ecw {
u8 charData; u8 charData;
struct struct
{ {
u8 ECWmin:4; u8 ECWmin:4;
u8 ECWmax:4; u8 ECWmax:4;
}f; }f;
}ECW, *PECW; };
typedef union _AC_PARAM{ typedef union _AC_PARAM{
u32 longData; u32 longData;
...@@ -403,7 +403,7 @@ typedef union _AC_PARAM{ ...@@ -403,7 +403,7 @@ typedef union _AC_PARAM{
struct struct
{ {
union aci_aifsn AciAifsn; union aci_aifsn AciAifsn;
ECW Ecw; union ecw Ecw;
u16 TXOPLimit; u16 TXOPLimit;
}f; }f;
}AC_PARAM, *PAC_PARAM; }AC_PARAM, *PAC_PARAM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment