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
This commit is contained in:

committed by
Madan Koyyalamudi

parent
1a79df2ce0
commit
a8dd8d7845
@@ -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));
|
||||
}
|
||||
|
Reference in New Issue
Block a user