소스 검색

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
Surabhi Vishnoi 3 년 전
부모
커밋
a8dd8d7845
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      components/pkt_capture/core/src/wlan_pkt_capture_data_txrx.c

+ 1 - 1
components/pkt_capture/core/src/wlan_pkt_capture_data_txrx.c

@@ -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));
 	}