From 9bf800e2df6e8ba4f0fb7f0bcc54e768b0114962 Mon Sep 17 00:00:00 2001 From: Jeff Johnson Date: Sun, 10 Mar 2019 21:58:34 -0700 Subject: [PATCH] qcacld-3.0: Rename HDD identifier pMfpRequired The Linux Coding Style frowns upon mixed-case names and so-called Hungarian notation, so rename HDD identifier pMfpRequired to be compliant. Change-Id: I745e5773ce387744120081c8fa275e9255639152 CRs-Fixed: 2418184 --- core/hdd/src/wlan_hdd_assoc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/hdd/src/wlan_hdd_assoc.c b/core/hdd/src/wlan_hdd_assoc.c index 975b76b2a54e6..719eee30ce7a1 100644 --- a/core/hdd/src/wlan_hdd_assoc.c +++ b/core/hdd/src/wlan_hdd_assoc.c @@ -5240,7 +5240,7 @@ static int32_t hdd_process_genie(struct hdd_adapter *adapter, eCsrEncryptionType *mc_encrypt_type, eCsrAuthType *auth_type, #ifdef WLAN_FEATURE_11W - uint8_t *pMfpRequired, uint8_t *pMfpCapable, + uint8_t *mfp_required, uint8_t *pMfpCapable, #endif uint16_t gen_ie_len, uint8_t *gen_ie) { @@ -5302,7 +5302,7 @@ static int32_t hdd_process_genie(struct hdd_adapter *adapter, hdd_translate_rsn_to_csr_encryption_type( dot11_rsn_ie.gp_cipher_suite); #ifdef WLAN_FEATURE_11W - *pMfpRequired = (dot11_rsn_ie.RSN_Cap[0] >> 6) & 0x1; + *mfp_required = (dot11_rsn_ie.RSN_Cap[0] >> 6) & 0x1; *pMfpCapable = csr_is_mfpc_capable(&dot11_rsn_ie); #endif #ifdef WLAN_CONV_CRYPTO_SUPPORTED