Przeglądaj źródła

qcacld-3.0: Rename HDD identifier mcEncryptType

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

Change-Id: Ica46896ac8139dede8f6654acedfec04ed46e4fa
CRs-Fixed: 2416633
Jeff Johnson 6 lat temu
rodzic
commit
cdde6c3156
2 zmienionych plików z 7 dodań i 7 usunięć
  1. 4 4
      core/hdd/src/wlan_hdd_assoc.c
  2. 3 3
      core/hdd/src/wlan_hdd_hostapd.c

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

@@ -5225,7 +5225,7 @@ bool hdd_is_fils_connection(struct hdd_adapter *adapter)
  * @adapter: pointer to adapter
  * @bssid: pointer to mac address
  * @encrypt_type: pointer to encryption type
- * @mcEncryptType: pointer to multicast encryption type
+ * @mc_encrypt_type: pointer to multicast encryption type
  * @auth_type: pointer to auth type
  *
  * Return: 0 on success, error number otherwise
@@ -5233,7 +5233,7 @@ bool hdd_is_fils_connection(struct hdd_adapter *adapter)
 static int32_t hdd_process_genie(struct hdd_adapter *adapter,
 				 u8 *bssid,
 				 eCsrEncryptionType *encrypt_type,
-				 eCsrEncryptionType *mcEncryptType,
+				 eCsrEncryptionType *mc_encrypt_type,
 				 eCsrAuthType *auth_type,
 #ifdef WLAN_FEATURE_11W
 				 uint8_t *pMfpRequired, uint8_t *pMfpCapable,
@@ -5294,7 +5294,7 @@ static int32_t hdd_process_genie(struct hdd_adapter *adapter,
 			hdd_translate_rsn_to_csr_encryption_type(
 					dot11_rsn_ie.pwise_cipher_suites[0]);
 		/* dot11_rsn_ie.gp_cipher_suite_count */
-		*mcEncryptType =
+		*mc_encrypt_type =
 			hdd_translate_rsn_to_csr_encryption_type(
 					dot11_rsn_ie.gp_cipher_suite);
 #ifdef WLAN_FEATURE_11W
@@ -5341,7 +5341,7 @@ static int32_t hdd_process_genie(struct hdd_adapter *adapter,
 			hdd_translate_wpa_to_csr_encryption_type(
 					dot11_wpa_ie.unicast_ciphers[0]);
 		/* dot11_wpa_ie.unicast_cipher_count */
-		*mcEncryptType =
+		*mc_encrypt_type =
 			hdd_translate_wpa_to_csr_encryption_type(
 					dot11_wpa_ie.multicast_cipher);
 	} else {

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

@@ -2684,7 +2684,7 @@ stopbss:
 
 static int hdd_softap_unpack_ie(mac_handle_t mac_handle,
 				eCsrEncryptionType *encrypt_type,
-				eCsrEncryptionType *mcEncryptType,
+				eCsrEncryptionType *mc_encrypt_type,
 				tCsrAuthList *akm_list,
 				bool *pMFPCapable,
 				bool *pMFPRequired,
@@ -2741,7 +2741,7 @@ static int hdd_softap_unpack_ie(mac_handle_t mac_handle,
 			hdd_translate_rsn_to_csr_encryption_type(dot11_rsn_ie.
 								 pwise_cipher_suites[0]);
 		/* dot11_rsn_ie.gp_cipher_suite_count */
-		*mcEncryptType =
+		*mc_encrypt_type =
 			hdd_translate_rsn_to_csr_encryption_type(dot11_rsn_ie.
 								 gp_cipher_suite);
 		/* Set the PMKSA ID Cache for this interface */
@@ -2784,7 +2784,7 @@ static int hdd_softap_unpack_ie(mac_handle_t mac_handle,
 			hdd_translate_wpa_to_csr_encryption_type(dot11_wpa_ie.
 								 unicast_ciphers[0]);
 		/* dot11_wpa_ie.unicast_cipher_count */
-		*mcEncryptType =
+		*mc_encrypt_type =
 			hdd_translate_wpa_to_csr_encryption_type(dot11_wpa_ie.
 								 multicast_cipher);
 		*pMFPCapable = false;