Sfoglia il codice sorgente

qcacld-3.0: Rename HDD identifier pAuthType

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

Change-Id: I85a44aff4deca274ae3e35dbda2b05fc59c68d00
CRs-Fixed: 2416635
Jeff Johnson 6 anni fa
parent
commit
4f1be2db2e
1 ha cambiato i file con 4 aggiunte e 4 eliminazioni
  1. 4 4
      core/hdd/src/wlan_hdd_assoc.c

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

@@ -5226,7 +5226,7 @@ bool hdd_is_fils_connection(struct hdd_adapter *adapter)
  * @bssid: pointer to mac address
  * @encrypt_type: pointer to encryption type
  * @mcEncryptType: pointer to multicast encryption type
- * @pAuthType: pointer to auth type
+ * @auth_type: pointer to auth type
  *
  * Return: 0 on success, error number otherwise
  */
@@ -5234,7 +5234,7 @@ static int32_t hdd_process_genie(struct hdd_adapter *adapter,
 				 u8 *bssid,
 				 eCsrEncryptionType *encrypt_type,
 				 eCsrEncryptionType *mcEncryptType,
-				 eCsrAuthType *pAuthType,
+				 eCsrAuthType *auth_type,
 #ifdef WLAN_FEATURE_11W
 				 uint8_t *pMfpRequired, uint8_t *pMfpCapable,
 #endif
@@ -5286,7 +5286,7 @@ static int32_t hdd_process_genie(struct hdd_adapter *adapter,
 			 dot11_rsn_ie.akm_suite_cnt);
 		/* dot11_rsn_ie.akm_suite_cnt */
 		/* Just translate the FIRST one */
-		*pAuthType =
+		*auth_type =
 			hdd_translate_rsn_to_csr_auth_type(
 					dot11_rsn_ie.akm_suite[0]);
 		/* dot11_rsn_ie.pwise_cipher_suite_count */
@@ -5333,7 +5333,7 @@ static int32_t hdd_process_genie(struct hdd_adapter *adapter,
 			 dot11_wpa_ie.auth_suite_count);
 		/* dot11_wpa_ie.auth_suite_count */
 		/* Just translate the FIRST one */
-		*pAuthType =
+		*auth_type =
 			hdd_translate_wpa_to_csr_auth_type(
 					dot11_wpa_ie.auth_suites[0]);
 		/* dot11_wpa_ie.unicast_cipher_count */