staging: rtl8192e: Convert typedef AC_PARAM to union ac_param

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:35:19 -05:00
parent a33be1e842
commit eb85e46896

View file

@ -396,7 +396,7 @@ union ecw {
}f;
};
typedef union _AC_PARAM{
union ac_param {
u32 longData;
u8 charData[4];
@ -406,10 +406,6 @@ typedef union _AC_PARAM{
union ecw Ecw;
u16 TXOPLimit;
}f;
}AC_PARAM, *PAC_PARAM;
};
#endif