소스 검색

qcacmn: Fix Supported rates max length

Currently the driver checks for the supported rates IE,
and if the length of the IE is greater than 8, the driver
rejects the IE, according to spec.
But some APs supports 12 rates hence are not scanned.

Fix is to have a supported rates IE length check of 12 instead
of 8.

Change-Id: Ib0e25c94e781ccd44b7f08ea3db6109ad8d6ad22
CRs-Fixed: 2360709
gaurank kathpalia 6 년 전
부모
커밋
079ec73fbc
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      umac/cmn_services/cmn_defs/inc/wlan_cmn_ieee80211.h

+ 1 - 1
umac/cmn_services/cmn_defs/inc/wlan_cmn_ieee80211.h

@@ -96,7 +96,7 @@
 
 /* Individual element IEs length checks */
 
-#define WLAN_SUPPORTED_RATES_IE_MAX_LEN          8
+#define WLAN_SUPPORTED_RATES_IE_MAX_LEN          12
 #define WLAN_DS_PARAM_IE_MAX_LEN                 1
 #define WLAN_COUNTRY_IE_MIN_LEN                  3
 #define WLAN_QUIET_IE_MAX_LEN                    6