qcacmn: add ppdu_desc to cdp_tx_indication_info

ppdu_desc contains more information that is relevant to radiotap.

Change-Id: Ie2d0d53027958edf0a1032b270b7a8339b849924
This commit is contained in:
Ruben Columbus
2019-11-22 11:26:25 -08:00
committed by nshrivas
parent 0e00776f45
commit 1bec34c1e4
6 changed files with 107 additions and 0 deletions

View File

@@ -191,6 +191,24 @@ cdp_deliver_tx_mgmt(ol_txrx_soc_handle soc, struct cdp_pdev *pdev,
soc->ops->mon_ops->txrx_deliver_tx_mgmt(pdev, nbuf);
}
static inline void
cdp_set_bsscolor(ol_txrx_soc_handle soc, struct cdp_pdev *pdev,
uint8_t bsscolor)
{
if (!soc || !soc->ops) {
QDF_TRACE(QDF_MODULE_ID_CDP, QDF_TRACE_LEVEL_DEBUG,
"%s: Invalid Instance", __func__);
QDF_BUG(0);
return;
}
if (!soc->ops->mon_ops ||
!soc->ops->mon_ops->txrx_set_bsscolor)
return;
soc->ops->mon_ops->txrx_set_bsscolor(pdev, bsscolor);
}
#ifdef WLAN_FEATURE_PKT_CAPTURE
static inline void
cdp_pktcapture_record_channel(