qcacmn: Vdev attach changes for MLO

Add mld mac address info during datapath
vdev attach.

Change-Id: I0ea22025d19be82be0c56809871e8513c3ce7962
CRs-Fixed: 3039326
This commit is contained in:
Rakesh Pillai
2021-06-18 03:00:08 -07:00
committed by Madan Koyyalamudi
parent 5c85cfb5a0
commit 32046ad850
7 changed files with 142 additions and 67 deletions

View File

@@ -146,8 +146,7 @@ cdp_soc_attach_target(ol_txrx_soc_handle soc)
static inline QDF_STATUS
cdp_vdev_attach(ol_txrx_soc_handle soc, uint8_t pdev_id,
uint8_t *vdev_mac_addr, uint8_t vdev_id,
enum wlan_op_mode op_mode, enum wlan_op_subtype subtype)
struct cdp_vdev_info *vdev_info)
{
if (!soc || !soc->ops) {
dp_cdp_debug("Invalid Instance:");
@@ -159,9 +158,7 @@ cdp_vdev_attach(ol_txrx_soc_handle soc, uint8_t pdev_id,
!soc->ops->cmn_drv_ops->txrx_vdev_attach)
return QDF_STATUS_E_FAILURE;
return soc->ops->cmn_drv_ops->txrx_vdev_attach(soc, pdev_id,
vdev_mac_addr, vdev_id,
op_mode, subtype);
return soc->ops->cmn_drv_ops->txrx_vdev_attach(soc, pdev_id, vdev_info);
}
#ifdef DP_FLOW_CTL