qcacld-3.0: Fix compilation error due to change in hal api

HAL_RX_DESC_GET_80211_HDR is replaced by hal_rx_desc_get_80211_hdr
api. Due to this compilation error is seen.

Fix this by using new api hal_rx_desc_get_80211_hdr instead of
HAL_RX_DESC_GET_80211_HDR.

Change-Id: I52bbae9d1a58cb13c8e6706a47e300db824251f3
CRs-Fixed: 2992548
Cette révision appartient à :
Surabhi Vishnoi
2021-07-15 13:10:21 +05:30
révisé par Madan Koyyalamudi
Parent 1a79df2ce0
révision a8dd8d7845

Voir le fichier

@@ -441,7 +441,7 @@ pkt_capture_rx_convert8023to80211(hal_soc_handle_t hal_soc_hdl,
* single mpdu from first msdu.
*/
if (qdf_nbuf_is_rx_chfrag_start(msdu)) {
pwh = HAL_RX_DESC_GET_80211_HDR(desc);
pwh = hal_rx_desc_get_80211_hdr(hal_soc_hdl, desc);
qdf_mem_copy(first_msdu_hdr, pwh,
sizeof(struct ieee80211_frame));
}