qcacld-3.0: Refine API wlansap_set_mode()

See change "qcacld-3.0: Refine API wlansap_open()" for the API
history.  Rename wlansap_set_mode() to wlansap_set_acl_mode() to align
with the naming of the "get" function, and update it to use the true
struct pointer type.

Change-Id: Ic4ad32ffa222f5fc70b0619cb150d737a573c474
CRs-Fixed: 2116267
This commit is contained in:
Jeff Johnson
2017-09-24 21:24:25 -07:00
کامیت شده توسط snandini
والد 65dd6d9632
کامیت f8ac737767
3فایلهای تغییر یافته به همراه16 افزوده شده و 7 حذف شده

مشاهده پرونده

@@ -1007,7 +1007,17 @@ QDF_STATUS wlansap_get_acl_accept_list(void *p_cds_gctx,
struct qdf_mac_addr *pAcceptList, uint8_t *nAcceptList);
QDF_STATUS wlansap_get_acl_deny_list(void *pCtx,
struct qdf_mac_addr *pDenyList, uint8_t *nDenyList);
QDF_STATUS wlansap_set_mode(void *p_cds_gctx, uint32_t mode);
/**
* wlansap_set_acl_mode() - Set the SAP ACL mode
* @pSapCtx: The SAP context pointer
* @mode: the desired ACL mode
*
* Return: QDF_STATUS
*/
QDF_STATUS wlansap_set_acl_mode(struct sap_context *pSapCtx,
eSapMacAddrACL mode);
QDF_STATUS wlansap_get_acl_mode(void *p_cds_gctx, eSapMacAddrACL *mode);
/**