Sfoglia il codice sorgente

qcacld-3.0: Rename HDD identifier encryptType

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

Change-Id: Ifc1e026649fbd3a5ce4e30f5233751bf55bf9b02
CRs-Fixed: 2422203
Jeff Johnson 6 anni fa
parent
commit
1627e75a67
1 ha cambiato i file con 5 aggiunte e 5 eliminazioni
  1. 5 5
      core/hdd/src/wlan_hdd_assoc.c

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

@@ -963,7 +963,7 @@ hdd_conn_save_connect_info(struct hdd_adapter *adapter,
 			   eCsrRoamBssType bss_type)
 {
 	struct hdd_station_ctx *sta_ctx = WLAN_HDD_GET_STATION_CTX_PTR(adapter);
-	eCsrEncryptionType encryptType = eCSR_ENCRYPT_TYPE_NONE;
+	eCsrEncryptionType encrypt_type = eCSR_ENCRYPT_TYPE_NONE;
 
 	QDF_ASSERT(roam_info);
 
@@ -1003,13 +1003,13 @@ hdd_conn_save_connect_info(struct hdd_adapter *adapter,
 			QDF_ASSERT(roam_info->u.pConnectedProfile);
 		} else {
 			/* Get Multicast Encryption Type */
-			encryptType =
+			encrypt_type =
 			    roam_info->u.pConnectedProfile->mcEncryptionType;
-			sta_ctx->conn_info.mc_encrypt_type = encryptType;
+			sta_ctx->conn_info.mc_encrypt_type = encrypt_type;
 			/* Get Unicast Encryption Type */
-			encryptType =
+			encrypt_type =
 				roam_info->u.pConnectedProfile->EncryptionType;
-			sta_ctx->conn_info.uc_encrypt_type = encryptType;
+			sta_ctx->conn_info.uc_encrypt_type = encrypt_type;
 
 			sta_ctx->conn_info.auth_type =
 				roam_info->u.pConnectedProfile->AuthType;