qcacmn: Changing DBS query method from DP

Changing the method DP queries WMA regarding
DBS capability. Now his call will be made through
policy manager.

Change-Id: I269537761a7acfa7e20a00c0ee7fc26ec1d17106
CRs-Fixed: 2025317
此提交包含在:
Pramod Simha
2017-03-27 14:48:09 -07:00
提交者 Gerrit - the friendly Code Review server
父節點 d817164e95
當前提交 7f7b4aa23d
共有 4 個檔案被更改,包括 14 行新增8 行删除

查看文件

@@ -35,7 +35,7 @@ ol_txrx_soc_handle ol_txrx_soc_attach(void *scn_handle, struct ol_if_ops *dp_ol_
#ifdef QCA_WIFI_QCA8074
void *dp_soc_attach_wifi3(void *osif_soc, void *hif_handle,
HTC_HANDLE htc_handle, qdf_device_t qdf_osdev,
struct ol_if_ops *ol_ops);
struct ol_if_ops *ol_ops, struct wlan_objmgr_psoc *psoc);
#else
/*
* dp_soc_attach_wifi3() - Attach txrx SOC
@@ -48,7 +48,7 @@ void *dp_soc_attach_wifi3(void *osif_soc, void *hif_handle,
*/
static inline void *dp_soc_attach_wifi3(void *osif_soc, void *hif_handle,
HTC_HANDLE htc_handle, qdf_device_t qdf_osdev,
struct ol_if_ops *ol_ops)
struct ol_if_ops *ol_ops, struct wlan_objmgr_psoc *psoc)
{
return NULL;
}
@@ -56,7 +56,8 @@ static inline void *dp_soc_attach_wifi3(void *osif_soc, void *hif_handle,
static inline ol_txrx_soc_handle cdp_soc_attach(u_int16_t devid,
void *hif_handle, void *scn, void *htc_handle,
qdf_device_t qdf_dev, struct ol_if_ops *dp_ol_if_ops)
qdf_device_t qdf_dev, struct ol_if_ops *dp_ol_if_ops,
struct wlan_objmgr_psoc *psoc)
{
switch (devid) {
case LITHIUM_DP: /*FIXME Add lithium devide IDs */
@@ -66,7 +67,7 @@ static inline ol_txrx_soc_handle cdp_soc_attach(u_int16_t devid,
case RUMIM2M_DEVICE_ID_NODE2: /*lithium emulation */
case RUMIM2M_DEVICE_ID_NODE3: /*lithium emulation */
return dp_soc_attach_wifi3(scn, hif_handle, htc_handle,
qdf_dev, dp_ol_if_ops);
qdf_dev, dp_ol_if_ops, psoc);
break;
default:
return ol_txrx_soc_attach(scn, dp_ol_if_ops);