qcacld-3.0: Rename HDD identifier pEncryptType

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

Change-Id: I134a791699b9d612bca35028e9f069d43c2adab6
CRs-Fixed: 2416632
This commit is contained in:
Jeff Johnson
2019-03-09 22:39:27 -08:00
committed by nshrivas
parent b94e64979e
commit a376a03996
2 changed files with 7 additions and 7 deletions

View File

@@ -5224,7 +5224,7 @@ bool hdd_is_fils_connection(struct hdd_adapter *adapter)
* hdd_process_genie() - process gen ie * hdd_process_genie() - process gen ie
* @adapter: pointer to adapter * @adapter: pointer to adapter
* @bssid: pointer to mac address * @bssid: pointer to mac address
* @pEncryptType: pointer to encryption type * @encrypt_type: pointer to encryption type
* @mcEncryptType: pointer to multicast encryption type * @mcEncryptType: pointer to multicast encryption type
* @pAuthType: pointer to auth type * @pAuthType: pointer to auth type
* *
@@ -5232,7 +5232,7 @@ bool hdd_is_fils_connection(struct hdd_adapter *adapter)
*/ */
static int32_t hdd_process_genie(struct hdd_adapter *adapter, static int32_t hdd_process_genie(struct hdd_adapter *adapter,
u8 *bssid, u8 *bssid,
eCsrEncryptionType *pEncryptType, eCsrEncryptionType *encrypt_type,
eCsrEncryptionType *mcEncryptType, eCsrEncryptionType *mcEncryptType,
eCsrAuthType *pAuthType, eCsrAuthType *pAuthType,
#ifdef WLAN_FEATURE_11W #ifdef WLAN_FEATURE_11W
@@ -5290,7 +5290,7 @@ static int32_t hdd_process_genie(struct hdd_adapter *adapter,
hdd_translate_rsn_to_csr_auth_type( hdd_translate_rsn_to_csr_auth_type(
dot11_rsn_ie.akm_suite[0]); dot11_rsn_ie.akm_suite[0]);
/* dot11_rsn_ie.pwise_cipher_suite_count */ /* dot11_rsn_ie.pwise_cipher_suite_count */
*pEncryptType = *encrypt_type =
hdd_translate_rsn_to_csr_encryption_type( hdd_translate_rsn_to_csr_encryption_type(
dot11_rsn_ie.pwise_cipher_suites[0]); dot11_rsn_ie.pwise_cipher_suites[0]);
/* dot11_rsn_ie.gp_cipher_suite_count */ /* dot11_rsn_ie.gp_cipher_suite_count */
@@ -5337,7 +5337,7 @@ static int32_t hdd_process_genie(struct hdd_adapter *adapter,
hdd_translate_wpa_to_csr_auth_type( hdd_translate_wpa_to_csr_auth_type(
dot11_wpa_ie.auth_suites[0]); dot11_wpa_ie.auth_suites[0]);
/* dot11_wpa_ie.unicast_cipher_count */ /* dot11_wpa_ie.unicast_cipher_count */
*pEncryptType = *encrypt_type =
hdd_translate_wpa_to_csr_encryption_type( hdd_translate_wpa_to_csr_encryption_type(
dot11_wpa_ie.unicast_ciphers[0]); dot11_wpa_ie.unicast_ciphers[0]);
/* dot11_wpa_ie.unicast_cipher_count */ /* dot11_wpa_ie.unicast_cipher_count */

View File

@@ -2683,7 +2683,7 @@ stopbss:
} }
static int hdd_softap_unpack_ie(mac_handle_t mac_handle, static int hdd_softap_unpack_ie(mac_handle_t mac_handle,
eCsrEncryptionType *pEncryptType, eCsrEncryptionType *encrypt_type,
eCsrEncryptionType *mcEncryptType, eCsrEncryptionType *mcEncryptType,
tCsrAuthList *akm_list, tCsrAuthList *akm_list,
bool *pMFPCapable, bool *pMFPCapable,
@@ -2737,7 +2737,7 @@ static int hdd_softap_unpack_ie(mac_handle_t mac_handle,
dot11_rsn_ie.akm_suite[i]); dot11_rsn_ie.akm_suite[i]);
akm_list->numEntries = dot11_rsn_ie.akm_suite_cnt; akm_list->numEntries = dot11_rsn_ie.akm_suite_cnt;
/* dot11_rsn_ie.pwise_cipher_suite_count */ /* dot11_rsn_ie.pwise_cipher_suite_count */
*pEncryptType = *encrypt_type =
hdd_translate_rsn_to_csr_encryption_type(dot11_rsn_ie. hdd_translate_rsn_to_csr_encryption_type(dot11_rsn_ie.
pwise_cipher_suites[0]); pwise_cipher_suites[0]);
/* dot11_rsn_ie.gp_cipher_suite_count */ /* dot11_rsn_ie.gp_cipher_suite_count */
@@ -2780,7 +2780,7 @@ static int hdd_softap_unpack_ie(mac_handle_t mac_handle,
dot11_wpa_ie.auth_suites[i]); dot11_wpa_ie.auth_suites[i]);
akm_list->numEntries = dot11_wpa_ie.auth_suite_count; akm_list->numEntries = dot11_wpa_ie.auth_suite_count;
/* dot11_wpa_ie.unicast_cipher_count */ /* dot11_wpa_ie.unicast_cipher_count */
*pEncryptType = *encrypt_type =
hdd_translate_wpa_to_csr_encryption_type(dot11_wpa_ie. hdd_translate_wpa_to_csr_encryption_type(dot11_wpa_ie.
unicast_ciphers[0]); unicast_ciphers[0]);
/* dot11_wpa_ie.unicast_cipher_count */ /* dot11_wpa_ie.unicast_cipher_count */