Sfoglia il codice sorgente

qcacld-3.0: Rename HDD identifier mcRSNEncryptType

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

Change-Id: I2d3b7a382ab2fdb0dc3261f92e1251405f759355
CRs-Fixed: 2415551
Jeff Johnson 6 anni fa
parent
commit
51203af8cd
2 ha cambiato i file con 27 aggiunte e 25 eliminazioni
  1. 12 12
      core/hdd/src/wlan_hdd_assoc.c
  2. 15 13
      core/hdd/src/wlan_hdd_hostapd.c

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

@@ -5395,8 +5395,8 @@ int hdd_set_genie_to_csr(struct hdd_adapter *adapter,
 	struct csr_roam_profile *roam_profile;
 	uint8_t *security_ie;
 	uint32_t status = 0;
-	eCsrEncryptionType RSNEncryptType;
-	eCsrEncryptionType mcRSNEncryptType;
+	eCsrEncryptionType rsn_encrypt_type;
+	eCsrEncryptionType mc_rsn_encrypt_type;
 	struct hdd_context *hdd_ctx;
 #ifdef WLAN_FEATURE_11W
 	uint8_t RSNMfpRequired = 0;
@@ -5420,8 +5420,8 @@ int hdd_set_genie_to_csr(struct hdd_adapter *adapter,
 	/* The actual processing may eventually be more extensive than this. */
 	/* Right now, just consume any PMKIDs that are  sent in by the app. */
 	status = hdd_process_genie(adapter, bssid,
-				   &RSNEncryptType,
-				   &mcRSNEncryptType, rsn_auth_type,
+				   &rsn_encrypt_type,
+				   &mc_rsn_encrypt_type, rsn_auth_type,
 #ifdef WLAN_FEATURE_11W
 				   &RSNMfpRequired, &RSNMfpCapable,
 #endif
@@ -5438,15 +5438,15 @@ int hdd_set_genie_to_csr(struct hdd_adapter *adapter,
 
 		/* Use the cipher type in the RSN IE */
 		roam_profile->EncryptionType.encryptionType[0] =
-			RSNEncryptType;
+			rsn_encrypt_type;
 		roam_profile->mcEncryptionType.encryptionType[0] =
-			mcRSNEncryptType;
+			mc_rsn_encrypt_type;
 
 		if ((QDF_IBSS_MODE == adapter->device_mode) &&
-		    ((eCSR_ENCRYPT_TYPE_AES == mcRSNEncryptType) ||
-		     (eCSR_ENCRYPT_TYPE_AES_GCMP == mcRSNEncryptType) ||
-		     (eCSR_ENCRYPT_TYPE_AES_GCMP_256 == mcRSNEncryptType) ||
-		     (eCSR_ENCRYPT_TYPE_TKIP == mcRSNEncryptType))) {
+		    ((eCSR_ENCRYPT_TYPE_AES == mc_rsn_encrypt_type) ||
+		     (eCSR_ENCRYPT_TYPE_AES_GCMP == mc_rsn_encrypt_type) ||
+		     (eCSR_ENCRYPT_TYPE_AES_GCMP_256 == mc_rsn_encrypt_type) ||
+		     (eCSR_ENCRYPT_TYPE_TKIP == mc_rsn_encrypt_type))) {
 			/*
 			 * For wpa none supplicant sends the WPA IE with unicast
 			 * cipher as eCSR_ENCRYPT_TYPE_NONE ,where as the
@@ -5457,7 +5457,7 @@ int hdd_set_genie_to_csr(struct hdd_adapter *adapter,
 
 			/* Set the unicast cipher same as multicast cipher */
 			roam_profile->EncryptionType.encryptionType[0]
-				= mcRSNEncryptType;
+				= mc_rsn_encrypt_type;
 		}
 #ifdef WLAN_FEATURE_11W
 		hdd_debug("RSNMfpRequired = %d, RSNMfpCapable = %d",
@@ -5466,7 +5466,7 @@ int hdd_set_genie_to_csr(struct hdd_adapter *adapter,
 		roam_profile->MFPCapable = RSNMfpCapable;
 #endif
 		hdd_debug("CSR AuthType = %d, EncryptionType = %d mcEncryptionType = %d",
-			 *rsn_auth_type, RSNEncryptType, mcRSNEncryptType);
+			 *rsn_auth_type, rsn_encrypt_type, mc_rsn_encrypt_type);
 	}
 #ifdef WLAN_CONV_CRYPTO_SUPPORTED
 	if (QDF_STATUS_SUCCESS != wlan_set_vdev_crypto_prarams_from_ie(

+ 15 - 13
core/hdd/src/wlan_hdd_hostapd.c

@@ -4888,8 +4888,8 @@ int wlan_hdd_cfg80211_start_bss(struct hdd_adapter *adapter,
 	struct ieee80211_mgmt mgmt;
 	const uint8_t *ie = NULL;
 	uint16_t capab_info, ap_prot = cfg_default(CFG_AP_PROTECTION_MODE);
-	eCsrEncryptionType RSNEncryptType;
-	eCsrEncryptionType mcRSNEncryptType;
+	eCsrEncryptionType rsn_encrypt_type;
+	eCsrEncryptionType mc_rsn_encrypt_type;
 	int status = QDF_STATUS_SUCCESS, ret;
 	int qdf_status = QDF_STATUS_SUCCESS;
 	tpWLAN_SAPEventCB sap_event_callback;
@@ -5256,7 +5256,8 @@ int wlan_hdd_cfg80211_start_bss(struct hdd_adapter *adapter,
 		status =
 			hdd_softap_unpack_ie(cds_get_context
 						     (QDF_MODULE_ID_SME),
-					     &RSNEncryptType, &mcRSNEncryptType,
+					     &rsn_encrypt_type,
+					     &mc_rsn_encrypt_type,
 					     &config->akm_list,
 					     &MFPCapable,
 					     &MFPRequired,
@@ -5267,12 +5268,12 @@ int wlan_hdd_cfg80211_start_bss(struct hdd_adapter *adapter,
 			/* Now copy over all the security attributes you have
 			 * parsed out. Use the cipher type in the RSN IE
 			 */
-			config->RSNEncryptType = RSNEncryptType;
-			config->mcRSNEncryptType = mcRSNEncryptType;
+			config->RSNEncryptType = rsn_encrypt_type;
+			config->mcRSNEncryptType = mc_rsn_encrypt_type;
 			(WLAN_HDD_GET_AP_CTX_PTR(adapter))->
-			encryption_type = RSNEncryptType;
+			encryption_type = rsn_encrypt_type;
 			hdd_debug("CSR EncryptionType = %d mcEncryptionType = %d",
-				  RSNEncryptType, mcRSNEncryptType);
+				  rsn_encrypt_type, mc_rsn_encrypt_type);
 			hdd_debug("CSR AKM Suites %d",
 				  config->akm_list.numEntries);
 			for (ii = 0; ii < config->akm_list.numEntries;
@@ -5308,8 +5309,8 @@ int wlan_hdd_cfg80211_start_bss(struct hdd_adapter *adapter,
 				       config->RSNWPAReqIELength);
 			status = hdd_softap_unpack_ie
 					(cds_get_context(QDF_MODULE_ID_SME),
-					 &RSNEncryptType,
-					 &mcRSNEncryptType,
+					 &rsn_encrypt_type,
+					 &mc_rsn_encrypt_type,
 					 &config->akm_list,
 					 &MFPCapable, &MFPRequired,
 					 config->RSNWPAReqIE[1] + 2,
@@ -5320,12 +5321,13 @@ int wlan_hdd_cfg80211_start_bss(struct hdd_adapter *adapter,
 				 * you have parsed out. Use the cipher type
 				 * in the RSN IE
 				 */
-				config->RSNEncryptType = RSNEncryptType;
-				config->mcRSNEncryptType = mcRSNEncryptType;
+				config->RSNEncryptType = rsn_encrypt_type;
+				config->mcRSNEncryptType = mc_rsn_encrypt_type;
 				(WLAN_HDD_GET_AP_CTX_PTR(adapter))->
-				encryption_type = RSNEncryptType;
+				encryption_type = rsn_encrypt_type;
 				hdd_debug("CSR EncryptionType = %d mcEncryptionType = %d",
-					  RSNEncryptType, mcRSNEncryptType);
+					  rsn_encrypt_type,
+					  mc_rsn_encrypt_type);
 				hdd_debug("CSR AKM Suites %d",
 					  config->akm_list.numEntries);
 				for (ii = 0; ii < config->akm_list.numEntries;