瀏覽代碼

qcacld-3.0: Rename HDD identifier pRsnIe

The Linux Coding Style frowns upon mixed-case names and so-called
Hungarian notation, so rename HDD identifier pRsnIe to be compliant.

Change-Id: I2c2d232f4bc81e5344aa20c93c900aa629467343
CRs-Fixed: 2416628
Jeff Johnson 6 年之前
父節點
當前提交
d062b8d6d6
共有 2 個文件被更改,包括 10 次插入10 次删除
  1. 5 5
      core/hdd/src/wlan_hdd_assoc.c
  2. 5 5
      core/hdd/src/wlan_hdd_hostapd.c

+ 5 - 5
core/hdd/src/wlan_hdd_assoc.c

@@ -5243,7 +5243,7 @@ static int32_t hdd_process_genie(struct hdd_adapter *adapter,
 	mac_handle_t mac_handle = hdd_adapter_get_mac_handle(adapter);
 	tDot11fIERSN dot11RSNIE = {0};
 	tDot11fIEWPA dot11WPAIE = {0};
-	uint8_t *pRsnIe;
+	uint8_t *rsn_ie;
 	uint16_t RSNIeLen;
 	uint32_t parse_status;
 #ifdef WLAN_CONV_CRYPTO_SUPPORTED
@@ -5267,10 +5267,10 @@ static int32_t hdd_process_genie(struct hdd_adapter *adapter,
 			return -EINVAL;
 		}
 		/* Skip past the EID byte and length byte */
-		pRsnIe = gen_ie + 2;
+		rsn_ie = gen_ie + 2;
 		RSNIeLen = gen_ie_len - 2;
 		/* Unpack the RSN IE */
-		parse_status = sme_unpack_rsn_ie(mac_handle, pRsnIe, RSNIeLen,
+		parse_status = sme_unpack_rsn_ie(mac_handle, rsn_ie, RSNIeLen,
 						 &dot11RSNIE, false);
 		if (!DOT11F_SUCCEEDED(parse_status)) {
 			hdd_err("Invalid RSN IE: parse status %d",
@@ -5315,11 +5315,11 @@ static int32_t hdd_process_genie(struct hdd_adapter *adapter,
 			return -EINVAL;
 		}
 		/* Skip past the EID and length byte - and four byte WiFi OUI */
-		pRsnIe = gen_ie + 2 + 4;
+		rsn_ie = gen_ie + 2 + 4;
 		RSNIeLen = gen_ie_len - (2 + 4);
 		/* Unpack the WPA IE */
 		parse_status = dot11f_unpack_ie_wpa(MAC_CONTEXT(mac_handle),
-						    pRsnIe, RSNIeLen,
+						    rsn_ie, RSNIeLen,
 						    &dot11WPAIE, false);
 		if (!DOT11F_SUCCEEDED(parse_status)) {
 			hdd_err("Invalid WPA IE: parse status %d",

+ 5 - 5
core/hdd/src/wlan_hdd_hostapd.c

@@ -2691,7 +2691,7 @@ static int hdd_softap_unpack_ie(mac_handle_t mac_handle,
 				uint16_t gen_ie_len, uint8_t *gen_ie)
 {
 	uint32_t ret;
-	uint8_t *pRsnIe;
+	uint8_t *rsn_ie;
 	uint16_t RSNIeLen, i;
 	tDot11fIERSN dot11RSNIE = {0};
 	tDot11fIEWPA dot11WPAIE = {0};
@@ -2713,11 +2713,11 @@ static int hdd_softap_unpack_ie(mac_handle_t mac_handle,
 			return QDF_STATUS_E_FAILURE;
 		}
 		/* Skip past the EID byte and length byte */
-		pRsnIe = gen_ie + 2;
+		rsn_ie = gen_ie + 2;
 		RSNIeLen = gen_ie_len - 2;
 		/* Unpack the RSN IE */
 		memset(&dot11RSNIE, 0, sizeof(tDot11fIERSN));
-		ret = sme_unpack_rsn_ie(mac_handle, pRsnIe, RSNIeLen,
+		ret = sme_unpack_rsn_ie(mac_handle, rsn_ie, RSNIeLen,
 					&dot11RSNIE, false);
 		if (DOT11F_FAILED(ret)) {
 			hdd_err("unpack failed, ret: 0x%x", ret);
@@ -2754,12 +2754,12 @@ static int hdd_softap_unpack_ie(mac_handle_t mac_handle,
 			return QDF_STATUS_E_FAILURE;
 		}
 		/* Skip past the EID byte and length byte and 4 byte WiFi OUI */
-		pRsnIe = gen_ie + 2 + 4;
+		rsn_ie = gen_ie + 2 + 4;
 		RSNIeLen = gen_ie_len - (2 + 4);
 		/* Unpack the WPA IE */
 		memset(&dot11WPAIE, 0, sizeof(tDot11fIEWPA));
 		ret = dot11f_unpack_ie_wpa(MAC_CONTEXT(mac_handle),
-					   pRsnIe, RSNIeLen,
+					   rsn_ie, RSNIeLen,
 					   &dot11WPAIE, false);
 		if (DOT11F_FAILED(ret)) {
 			hdd_err("unpack failed, ret: 0x%x", ret);