Commit 15321170 authored by John Whitmore's avatar John Whitmore Committed by Greg Kroah-Hartman
Browse files

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: default avatarJohn Whitmore <johnfwhitmore@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent dd3c69e1
Loading
Loading
Loading
Loading
+0 −12
Original line number Diff line number Diff line
@@ -24,18 +24,6 @@ union aci_aifsn {
	} f;	// Field
};

//
// 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.