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 {
}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;
......
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