Skip to content

Commit

Permalink
staging: rtl8192e: Convert typedef ECW to union ecw
Browse files Browse the repository at this point in the history
Remove typedef from union.
Rename union.
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 44a4004 commit a33be1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions drivers/staging/rtl8192e/rtl819x_Qos.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit a33be1e

Please sign in to comment.