staging: rtl8192e: Remove dead code associated with WMM_Hang_8187
authorLarry Finger <Larry.Finger@lwfinger.net>
Thu, 14 Jul 2011 14:43:36 +0000 (09:43 -0500)
committerLarry Finger <Larry.Finger@lwfinger.net>
Wed, 24 Aug 2011 02:06:22 +0000 (21:06 -0500)
This patch also removes an "#if 1 .... #endif" that survived an earlier
edit.

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
drivers/staging/rtl8192e/rtllib.h

index cb83fffd4a13860e25385f07a2ec21d802789372..a138e52f6a50520d49297a349c283d6f06fa290b 100644 (file)
@@ -1633,10 +1633,6 @@ enum {WMM_all_frame, WMM_two_frame, WMM_four_frame, WMM_six_frame};
 #define RTLLIB_PS_UNICAST RTLLIB_DTIM_UCAST
 #define RTLLIB_PS_MBCAST RTLLIB_DTIM_MBCAST
 
-#ifdef WMM_Hang_8187
-#undef WMM_Hang_8187
-#endif
-
 #define WME_AC_BK   0x00
 #define WME_AC_BE   0x01
 #define WME_AC_VI   0x02
@@ -1647,14 +1643,13 @@ enum {WMM_all_frame, WMM_two_frame, WMM_four_frame, WMM_six_frame};
 
 #define MAX_RECEIVE_BUFFER_SIZE 9100
 
-#if 1
 #define UP2AC(up) (               \
        ((up) < 1) ? WME_AC_BE : \
        ((up) < 3) ? WME_AC_BK : \
        ((up) < 4) ? WME_AC_BE : \
        ((up) < 6) ? WME_AC_VI : \
        WME_AC_VO)
-#endif
+
 #define AC2UP(_ac)     (       \
        ((_ac) == WME_AC_VO) ? 6 : \
        ((_ac) == WME_AC_VI) ? 5 : \
This page took 0.027441 seconds and 5 git commands to generate.