Sfoglia il codice sorgente

qcacld-3.0: Rename HDD identifier pMFPCapable

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

Change-Id: I30e04b74e0a00b5c4abd0efe9aa4e8a0002ed499
CRs-Fixed: 2416634
Jeff Johnson 6 anni fa
parent
commit
17e89093c6
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. 3 3
      core/hdd/src/wlan_hdd_hostapd.c

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

@@ -2686,7 +2686,7 @@ static int hdd_softap_unpack_ie(mac_handle_t mac_handle,
 				eCsrEncryptionType *encrypt_type,
 				eCsrEncryptionType *mc_encrypt_type,
 				tCsrAuthList *akm_list,
-				bool *pMFPCapable,
+				bool *mfp_capable,
 				bool *pMFPRequired,
 				uint16_t gen_ie_len, uint8_t *gen_ie)
 {
@@ -2745,7 +2745,7 @@ static int hdd_softap_unpack_ie(mac_handle_t mac_handle,
 			hdd_translate_rsn_to_csr_encryption_type(dot11_rsn_ie.
 								 gp_cipher_suite);
 		/* Set the PMKSA ID Cache for this interface */
-		*pMFPCapable = 0 != (dot11_rsn_ie.RSN_Cap[0] & 0x80);
+		*mfp_capable = 0 != (dot11_rsn_ie.RSN_Cap[0] & 0x80);
 		*pMFPRequired = 0 != (dot11_rsn_ie.RSN_Cap[0] & 0x40);
 	} else if (gen_ie[0] == DOT11F_EID_WPA) {
 		/* Validity checks */
@@ -2787,7 +2787,7 @@ static int hdd_softap_unpack_ie(mac_handle_t mac_handle,
 		*mc_encrypt_type =
 			hdd_translate_wpa_to_csr_encryption_type(dot11_wpa_ie.
 								 multicast_cipher);
-		*pMFPCapable = false;
+		*mfp_capable = false;
 		*pMFPRequired = false;
 	} else {
 		hdd_err("gen_ie[0]: %d", gen_ie[0]);