qcacmn: Add 6GHz support for chan/freq/band usage in mesh mode

Currently mesh mode uses channel numbering which is derived
from APIs that don't support 6GHz channels numbering due to the
overloading of 6GHz channels with 2.4GHz and 5GHz.

Add support to obtain the correct channel number (and auxiliary
information like band and frequency) through the new APIs that
support 6GHz.

Change-Id: Ib0b39ebae2a22bd6b2b5d17b9058c3c2100e0d59
CRs-Fixed: 2605229
This commit is contained in:
Aditya Sathish
2020-01-29 15:14:02 +05:30
کامیت شده توسط nshrivas
والد c4667b8b12
کامیت 041409f98f
5فایلهای تغییر یافته به همراه37 افزوده شده و 7 حذف شده

مشاهده پرونده

@@ -2834,7 +2834,8 @@ void dp_tx_comp_fill_tx_completion_stats(struct dp_tx_desc_s *tx_desc,
mhdr = (struct meta_hdr_s *)qdf_nbuf_data(netbuf);
mhdr->rssi = ts->ack_frame_rssi;
mhdr->channel = tx_desc->pdev->operating_channel;
mhdr->band = tx_desc->pdev->operating_channel.band;
mhdr->channel = tx_desc->pdev->operating_channel.num;
}
#else