qcacld-3.0: Refine API wlansap_disassoc_sta()

See change "qcacld-3.0: Refine API wlansap_open()" for the API history.
Update wlansap_disassoc_sta() to use the true struct pointer type.

Change-Id: I20209f92b7313026aee712a639f3605619255079
CRs-Fixed: 2116267
This commit is contained in:
Jeff Johnson
2017-09-25 13:58:52 -07:00
committed by snandini
parent 31d1a74d61
commit 92e867c568
2 changed files with 14 additions and 21 deletions

View File

@@ -979,8 +979,19 @@ uint16_t wlansap_check_cc_intf(struct sap_context *pSapCtx);
QDF_STATUS wlansap_set_mac_acl(struct sap_context *pSapCtx,
tsap_Config_t *pConfig);
QDF_STATUS wlansap_disassoc_sta(void *p_cds_gctx,
/**
* wlansap_disassoc_sta() - initiate disassociation of station.
* @pSapCtx: Pointer to the SAP context
* @p_del_sta_params: pointer to station deletion parameters
*
* This api function provides for Ap App/HDD initiated disassociation of station
*
* Return: The QDF_STATUS code associated with performing the operation
* QDF_STATUS_SUCCESS: Success
*/
QDF_STATUS wlansap_disassoc_sta(struct sap_context *pSapCtx,
struct tagCsrDelStaParams *p_del_sta_params);
QDF_STATUS wlansap_deauth_sta(void *p_cds_gctx,
struct tagCsrDelStaParams *pDelStaParams);
QDF_STATUS wlansap_set_channel_change_with_csa(void *p_cds_gctx,