qcacld-3.0: Rename HDD identifier MFPRequired

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

Change-Id: Ie63644ba0f4c146cf1c29c9b086d402e7e0bd9bc
CRs-Fixed: 2415553
Этот коммит содержится в:
Jeff Johnson
2019-03-09 19:35:06 -08:00
коммит произвёл nshrivas
родитель 7e6f291655
Коммит c17b9006d3

Просмотреть файл

@@ -4902,7 +4902,7 @@ int wlan_hdd_cfg80211_start_bss(struct hdd_adapter *adapter,
uint8_t mcc_to_scc_switch = 0, conc_rule1 = 0; uint8_t mcc_to_scc_switch = 0, conc_rule1 = 0;
struct sme_config_params *sme_config; struct sme_config_params *sme_config;
bool mfp_capable = false; bool mfp_capable = false;
bool MFPRequired = false; bool mfp_required = false;
uint16_t prev_rsn_length = 0; uint16_t prev_rsn_length = 0;
enum dfs_mode mode; enum dfs_mode mode;
bool ignore_cac = 0; bool ignore_cac = 0;
@@ -5260,7 +5260,7 @@ int wlan_hdd_cfg80211_start_bss(struct hdd_adapter *adapter,
&mc_rsn_encrypt_type, &mc_rsn_encrypt_type,
&config->akm_list, &config->akm_list,
&mfp_capable, &mfp_capable,
&MFPRequired, &mfp_required,
config->RSNWPAReqIE[1] + 2, config->RSNWPAReqIE[1] + 2,
config->RSNWPAReqIE); config->RSNWPAReqIE);
@@ -5312,7 +5312,7 @@ int wlan_hdd_cfg80211_start_bss(struct hdd_adapter *adapter,
&rsn_encrypt_type, &rsn_encrypt_type,
&mc_rsn_encrypt_type, &mc_rsn_encrypt_type,
&config->akm_list, &config->akm_list,
&mfp_capable, &MFPRequired, &mfp_capable, &mfp_required,
config->RSNWPAReqIE[1] + 2, config->RSNWPAReqIE[1] + 2,
config->RSNWPAReqIE); config->RSNWPAReqIE);
@@ -5539,9 +5539,9 @@ int wlan_hdd_cfg80211_start_bss(struct hdd_adapter *adapter,
#ifdef WLAN_FEATURE_11W #ifdef WLAN_FEATURE_11W
config->mfpCapable = mfp_capable; config->mfpCapable = mfp_capable;
config->mfpRequired = MFPRequired; config->mfpRequired = mfp_required;
hdd_debug("Soft AP MFP capable %d, MFP required %d", hdd_debug("Soft AP MFP capable %d, MFP required %d",
config->mfpCapable, config->mfpRequired); config->mfpCapable, config->mfpRequired);
#endif #endif
hdd_debug("SOftAP macaddress : " MAC_ADDRESS_STR, hdd_debug("SOftAP macaddress : " MAC_ADDRESS_STR,