Parcourir la source

qcacld-3.0: Rename HDD identifier pMfpRequired

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

Change-Id: I745e5773ce387744120081c8fa275e9255639152
CRs-Fixed: 2418184
Jeff Johnson il y a 6 ans
Parent
commit
9bf800e2df
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      core/hdd/src/wlan_hdd_assoc.c

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

@@ -5240,7 +5240,7 @@ static int32_t hdd_process_genie(struct hdd_adapter *adapter,
 				 eCsrEncryptionType *mc_encrypt_type,
 				 eCsrAuthType *auth_type,
 #ifdef WLAN_FEATURE_11W
-				 uint8_t *pMfpRequired, uint8_t *pMfpCapable,
+				 uint8_t *mfp_required, uint8_t *pMfpCapable,
 #endif
 				 uint16_t gen_ie_len, uint8_t *gen_ie)
 {
@@ -5302,7 +5302,7 @@ static int32_t hdd_process_genie(struct hdd_adapter *adapter,
 			hdd_translate_rsn_to_csr_encryption_type(
 					dot11_rsn_ie.gp_cipher_suite);
 #ifdef WLAN_FEATURE_11W
-		*pMfpRequired = (dot11_rsn_ie.RSN_Cap[0] >> 6) & 0x1;
+		*mfp_required = (dot11_rsn_ie.RSN_Cap[0] >> 6) & 0x1;
 		*pMfpCapable = csr_is_mfpc_capable(&dot11_rsn_ie);
 #endif
 #ifdef WLAN_CONV_CRYPTO_SUPPORTED