From: Larry Finger Date: Tue, 19 Jul 2011 15:31:43 +0000 (-0500) Subject: staging: rtl8192e: Convert typedef ECW to union ecw X-Git-Tag: next-20110826~5^2~92^2~84 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=a33be1e842d6fef31cc5e88bc92541552a448286;p=karo-tx-linux.git staging: rtl8192e: Convert typedef ECW to union ecw Remove typedef from union. Rename union. Rename uses. Signed-off-by: Larry Finger --- diff --git a/drivers/staging/rtl8192e/rtl819x_Qos.h b/drivers/staging/rtl8192e/rtl819x_Qos.h index af5c627941a3..1bf1016f77b6 100644 --- a/drivers/staging/rtl8192e/rtl819x_Qos.h +++ b/drivers/staging/rtl8192e/rtl819x_Qos.h @@ -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;