qcacld-3.0: Rename mlme_update APIs to mlme_init

Rename mlme_update APIs in wlan_mlme_main.c to mlme_init as these
APIs initialize the MLME structures and init is a more appropriate
for these APIs.

Also re-order defines in CFG_MLME_ALL to be in alphabetic order
similar to CFG_ALL

Change-Id: Ia8e10d86c62cc46230ef4c3d51c9588eaa1a5477
CRs-Fixed: 2318497
This commit is contained in:
Vignesh Viswanathan
2018-09-19 16:21:31 +05:30
committed by nshrivas
parent cca46f12d0
commit e258cced61
3 changed files with 34 additions and 30 deletions

View File

@@ -36,18 +36,19 @@
#include "cfg_mlme_sap.h"
#include "cfg_mlme_scoring.h"
/* Please Maintain Alphabetic Order here */
#define CFG_MLME_ALL \
CFG_CHAINMASK_ALL \
CFG_HT_CAPS_ALL \
CFG_LFR_ALL \
CFG_OBSS_HT40_ALL \
CFG_MBO_ALL \
CFG_VHT_CAPS_ALL \
CFG_OBSS_HT40_ALL \
CFG_QOS_ALL \
CFG_RATES_ALL \
CFG_SAP_PROTECTION_ALL \
CFG_SAP_ALL \
CFG_SAP_PROTECTION_ALL \
CFG_SCORING_ALL \
CFG_STA_ALL \
CFG_SCORING_ALL
CFG_VHT_CAPS_ALL
#endif /* __CFG_MLME_H */