qcacld-3.0: Rename HDD identifier RSNMfpCapable

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

Change-Id: Ida5c11b7da71cd0f4b7a344ca5ddc1ab3975c840
CRs-Fixed: 2418185
Tento commit je obsažen v:
Jeff Johnson
2019-03-10 22:02:29 -07:00
odevzdal nshrivas
rodič 3b113c5ec3
revize de8f768f13

Zobrazit soubor

@@ -5404,7 +5404,7 @@ int hdd_set_genie_to_csr(struct hdd_adapter *adapter,
struct hdd_context *hdd_ctx;
#ifdef WLAN_FEATURE_11W
uint8_t mfp_required = 0;
uint8_t RSNMfpCapable = 0;
uint8_t mfp_capable = 0;
#endif
u8 bssid[ETH_ALEN]; /* MAC address of assoc peer */
@@ -5427,7 +5427,7 @@ int hdd_set_genie_to_csr(struct hdd_adapter *adapter,
&rsn_encrypt_type,
&mc_rsn_encrypt_type, rsn_auth_type,
#ifdef WLAN_FEATURE_11W
&mfp_required, &RSNMfpCapable,
&mfp_required, &mfp_capable,
#endif
security_ie[1] + 2,
security_ie);
@@ -5464,10 +5464,10 @@ int hdd_set_genie_to_csr(struct hdd_adapter *adapter,
= mc_rsn_encrypt_type;
}
#ifdef WLAN_FEATURE_11W
hdd_debug("mfp_required = %d, RSNMfpCapable = %d",
mfp_required, RSNMfpCapable);
hdd_debug("mfp_required = %d, mfp_capable = %d",
mfp_required, mfp_capable);
roam_profile->MFPRequired = mfp_required;
roam_profile->MFPCapable = RSNMfpCapable;
roam_profile->MFPCapable = mfp_capable;
#endif
hdd_debug("CSR AuthType = %d, EncryptionType = %d mcEncryptionType = %d",
*rsn_auth_type, rsn_encrypt_type, mc_rsn_encrypt_type);