qcacld-3.0: Use dfs component support

Remove legacy dfs api’s and use dfs component.

Change-Id: Ia0fa016b174ef4b50e2cc339e4e476ec65642dbf
CRs-Fixed: 2021357
This commit is contained in:
Arif Hussain
2017-02-11 16:57:19 -08:00
committed by snandini
parent 7f6bfb552f
commit cd1516322d
32 changed files with 375 additions and 3061 deletions

View File

@@ -1005,7 +1005,15 @@ void wlansap_extend_to_acs_range(tHalHandle hal, uint8_t *startChannelNum,
uint8_t *endChannelNum, uint8_t *bandStartChannel,
uint8_t *bandEndChannel);
QDF_STATUS wlansap_get_dfs_nol(void *pSapCtx, uint8_t *nol, uint32_t *nol_len);
QDF_STATUS wlansap_set_dfs_nol(void *pSapCtx, eSapDfsNolType conf);
/**
* wlansap_set_dfs_nol() - Set dfs nol
* @sap_ctx: SAP context
* @conf: set type
*
* Return: QDF_STATUS
*/
QDF_STATUS wlansap_set_dfs_nol(void *sap_ctx, eSapDfsNolType conf);
/**
* wlan_sap_set_vendor_acs() - Set vendor specific acs in sap context
@@ -1031,6 +1039,16 @@ QDF_STATUS wlansap_set_tx_leakage_threshold(tHalHandle hal,
QDF_STATUS wlansap_set_invalid_session(void *cds_ctx);
/**
* sap_dfs_set_current_channel() - Set current channel params in dfs component
* @sap_ctx: sap context
*
* Set current channel params in dfs component, this info will be used to mark
* the channels in nol when radar is detected.
*
* Return: None
*/
void sap_dfs_set_current_channel(void *sap_ctx);
#ifdef __cplusplus
}
#endif