|
@@ -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);
|