qcacmn: Add LMAC interface for WIFI POS component

This change adds implementation for interfacing with LMAC for
southbound request to WMI and northbount events from WMI.

Change-Id: Ia027ec704d99ef586b89bfadce4f174c3bcf8c17
CRs-Fixed: 2003488
这个提交包含在:
Naveen Rawat
2017-03-06 16:04:45 -08:00
提交者 Sandeep Puligilla
父节点 445582f5b0
当前提交 18ceca16b7
修改 9 个文件,包含 447 行新增1 行删除

查看文件

@@ -148,6 +148,22 @@ QDF_STATUS wifi_pos_init(void);
*/
QDF_STATUS wifi_pos_deinit(void);
/**
* wifi_pos_psoc_enable: psoc enable API for wifi positioning component
* @psoc: pointer to PSOC
*
* Return: status of operation
*/
QDF_STATUS wifi_pos_psoc_enable(struct wlan_objmgr_psoc *psoc);
/**
* wifi_pos_psoc_disable: psoc disable API for wifi positioning component
* @psoc: pointer to PSOC
*
* Return: status of operation
*/
QDF_STATUS wifi_pos_psoc_disable(struct wlan_objmgr_psoc *psoc);
/**
* wifi_pos_set_oem_target_type: public API to set param in wifi_pos private
* object
@@ -271,6 +287,15 @@ static inline QDF_STATUS wifi_pos_deinit(void)
return QDF_STATUS_SUCCESS;
}
static inline QDF_STATUS wifi_pos_psoc_enable(struct wlan_objmgr_psoc *psoc)
{
return QDF_STATUS_SUCCESS;
}
static inline QDF_STATUS wifi_pos_psoc_disable(struct wlan_objmgr_psoc *psoc)
{
return QDF_STATUS_SUCCESS;
}
#endif
#endif