From a33be1e842d6fef31cc5e88bc92541552a448286 Mon Sep 17 00:00:00 2001 From: Larry Finger Date: Tue, 19 Jul 2011 10:31:43 -0500 Subject: [PATCH] staging: rtl8192e: Convert typedef ECW to union ecw Remove typedef from union. Rename union. Rename uses. Signed-off-by: Larry Finger --- drivers/staging/rtl8192e/rtl819x_Qos.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.39.5