qcacmn: target_if support for spatial reuse feature

Add target_if support for spatial reuse feature

Change-Id: If0ad6e459e7b7d215d5016c8c7c0e94df5d36649
CRs-Fixed: 3213486
Este commit está contenido en:
Jayachandran Sreekumaran
2022-05-25 07:06:00 +05:30
cometido por Madan Koyyalamudi
padre 25e13778d6
commit 1b244cfcb0
Se han modificado 4 ficheros con 150 adiciones y 0 borrados

Ver fichero

@@ -1439,6 +1439,13 @@ struct wlan_lmac_if_twt_rx_ops {
};
#endif
#if defined WLAN_FEATURE_11AX
struct wlan_lmac_if_spatial_reuse_tx_ops {
QDF_STATUS (*send_cfg)(struct wlan_objmgr_vdev *vdev, uint8_t sr_ctrl,
uint8_t non_srg_max_pd_offset);
};
#endif
/**
* struct wlan_lmac_if_tx_ops - south bound tx function pointers
* @mgmt_txrx_tx_ops: mgmt txrx tx ops
@@ -1542,6 +1549,10 @@ struct wlan_lmac_if_tx_ops {
#if defined(WLAN_SUPPORT_TWT) && defined(WLAN_TWT_CONV_SUPPORTED)
struct wlan_lmac_if_twt_tx_ops twt_tx_ops;
#endif
#if defined WLAN_FEATURE_11AX
struct wlan_lmac_if_spatial_reuse_tx_ops spatial_reuse_tx_ops;
#endif
};
/**