qcacld-3.0: Refine API wlansap_set_mac_acl()

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

Change-Id: I3d32647b2e9dfdea2314f8a3ade8aee82c94f8af
CRs-Fixed: 2116267
Цей коміт міститься в:
Jeff Johnson
2017-09-24 21:12:49 -07:00
зафіксовано snandini
джерело 16e29cd0de
коміт 65dd6d9632
2 змінених файлів з 21 додано та 24 видалено

Переглянути файл

@@ -962,7 +962,22 @@ QDF_STATUS wlan_sap_get_pre_cac_vdev_id(tHalHandle handle, uint8_t *vdev_id);
*/
uint16_t wlansap_check_cc_intf(struct sap_context *pSapCtx);
#endif
QDF_STATUS wlansap_set_mac_acl(void *p_cds_gctx, tsap_Config_t *pConfig);
/**
* wlansap_set_mac_acl() - set MAC list entry in ACL.
* @pSapCtx: Pointer to the SAP context
* @pConfig: Pointer to SAP config.
*
* This api function provides SAP to set mac list entry in accept list as well
* as deny list
*
* Return: The result code associated with performing the operation
* QDF_STATUS_E_FAULT: Pointer to SAP cb is NULL;
* access would cause a page fault
* QDF_STATUS_SUCCESS: Success
*/
QDF_STATUS wlansap_set_mac_acl(struct sap_context *pSapCtx,
tsap_Config_t *pConfig);
QDF_STATUS wlansap_disassoc_sta(void *p_cds_gctx,
struct tagCsrDelStaParams *p_del_sta_params);