qcacld-3.0: Relocate HDD ini items (1)

Relocate below HDD ini items as per converged infrastructure.
1. CFG_ENABLE_RUNTIME_PM
2. CFG_STA_KEEPALIVE_METHOD_NAME
3. CFG_ENABLE_MCC_ENABLED_NAME
4. CFG_ENABLE_SAP_SUSPEND
5. CFG_ENABLE_DEAUTH_TO_DISASSOC_MAP_NAME
6. CFG_INFORM_BSS_RSSI_RAW_NAME
7. CFG_AP_ENABLE_RANDOM_BSSID_NAME
8. CFG_VC_MODE_BITMAP

Change-Id: I881c87f9ca73804d03af358163c9a043b3193c81
CRs-Fixed: 2357174
This commit is contained in:
Sourav Mohapatra
2018-11-16 11:29:54 +05:30
committed by nshrivas
parent e788247c72
commit f3f8127986
13 changed files with 228 additions and 2 deletions

View File

@@ -2473,6 +2473,17 @@ QDF_STATUS
ucfg_mlme_get_current_mcs_set(struct wlan_objmgr_psoc *psoc, uint8_t *buf,
qdf_size_t *len);
/**
* ucfg_mlme_get_sta_keepalive_method() - Get sta_keepalive_method
* @psoc: pointer to psoc object
* @val: Value to pass to the caller
*
* Return: QDF Status
*/
QDF_STATUS
ucfg_mlme_get_sta_keepalive_method(struct wlan_objmgr_psoc *psoc,
enum station_keepalive_method *val);
/**
* ucfg_mlme_get_wmm_dir_ac_vi() - Get TSPEC direction
* for VI
@@ -3068,4 +3079,30 @@ ucfg_mlme_set_sap_uapsd_flag(struct wlan_objmgr_psoc *psoc, bool value)
return wlan_mlme_set_sap_uapsd_flag(psoc, value);
}
/**
* ucfg_mlme_get_enable_deauth_to_disassoc_map() - Enable deauth_to_disassoc_map
* @psoc: pointer to psoc object
* @value: Value that needs to be set from the caller
*
* UCFG API to be used by HDD/OSIF callers
*
* Return: QDF Status
*/
QDF_STATUS
ucfg_mlme_get_enable_deauth_to_disassoc_map(struct wlan_objmgr_psoc *psoc,
bool *value);
/**
* ucfg_mlme_get_ap_random_bssid_enable() - Enable random bssid
* @psoc: pointer to psoc object
* @value: Value that needs to be set from the caller
*
* UCFG API to be used by HDD/OSIF callers
*
* Return: QDF Status
*/
QDF_STATUS
ucfg_mlme_get_ap_random_bssid_enable(struct wlan_objmgr_psoc *psoc,
bool *value);
#endif /* _WLAN_MLME_UCFG_API_H_ */