From 15321170f7e2fa1d010f021589c8f7168c5d23fa Mon Sep 17 00:00:00 2001 From: John Whitmore Date: Sun, 29 Jul 2018 00:14:49 +0100 Subject: [PATCH] staging:rtl8192u: Remove unused union ECW -Style The union ECW is never used in code so has simply been removed. This is a coding style change which should have no impact on runtime code execution. Signed-off-by: John Whitmore Signed-off-by: Greg Kroah-Hartman --- drivers/staging/rtl8192u/ieee80211/rtl819x_Qos.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/drivers/staging/rtl8192u/ieee80211/rtl819x_Qos.h b/drivers/staging/rtl8192u/ieee80211/rtl819x_Qos.h index 43edb83..65d7c9f 100644 --- a/drivers/staging/rtl8192u/ieee80211/rtl819x_Qos.h +++ b/drivers/staging/rtl8192u/ieee80211/rtl819x_Qos.h @@ -25,18 +25,6 @@ union aci_aifsn { }; // -// ECWmin/ECWmax field. -// Ref: WMM spec 2.2.2: WME Parameter Element, p.13. -// -typedef union _ECW { - u8 charData; - struct { - u8 ECWmin:4; - u8 ECWmax:4; - } f; // Field -} ECW, *PECW; - -// // Direction Field Values. // Ref: WMM spec 2.2.11: WME TSPEC Element, p.18. // -- 2.7.4