Browse Source

qcacld-3.0: Rename HDD identifier RSNMfpRequired

The Linux Coding Style frowns upon mixed-case names so rename HDD
identifier RSNMfpRequired to be compliant.

Change-Id: I9e4843c6ac8914580be5da668080802bdc0ec3c1
CRs-Fixed: 2418187
Jeff Johnson 6 years ago
parent
commit
5abc32d07c
1 changed files with 5 additions and 5 deletions
  1. 5 5
      core/hdd/src/wlan_hdd_assoc.c

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

@@ -5403,7 +5403,7 @@ int hdd_set_genie_to_csr(struct hdd_adapter *adapter,
 	eCsrEncryptionType mc_rsn_encrypt_type;
 	struct hdd_context *hdd_ctx;
 #ifdef WLAN_FEATURE_11W
-	uint8_t RSNMfpRequired = 0;
+	uint8_t mfp_required = 0;
 	uint8_t RSNMfpCapable = 0;
 #endif
 	u8 bssid[ETH_ALEN];        /* MAC address of assoc peer */
@@ -5427,7 +5427,7 @@ int hdd_set_genie_to_csr(struct hdd_adapter *adapter,
 				   &rsn_encrypt_type,
 				   &mc_rsn_encrypt_type, rsn_auth_type,
 #ifdef WLAN_FEATURE_11W
-				   &RSNMfpRequired, &RSNMfpCapable,
+				   &mfp_required, &RSNMfpCapable,
 #endif
 				   security_ie[1] + 2,
 				   security_ie);
@@ -5464,9 +5464,9 @@ int hdd_set_genie_to_csr(struct hdd_adapter *adapter,
 				= mc_rsn_encrypt_type;
 		}
 #ifdef WLAN_FEATURE_11W
-		hdd_debug("RSNMfpRequired = %d, RSNMfpCapable = %d",
-			 RSNMfpRequired, RSNMfpCapable);
-		roam_profile->MFPRequired = RSNMfpRequired;
+		hdd_debug("mfp_required = %d, RSNMfpCapable = %d",
+			 mfp_required, RSNMfpCapable);
+		roam_profile->MFPRequired = mfp_required;
 		roam_profile->MFPCapable = RSNMfpCapable;
 #endif
 		hdd_debug("CSR AuthType = %d, EncryptionType = %d mcEncryptionType = %d",