qcacld-3.0: Fix build error when WLAN_SUPPORT_RX_FISA defined
Fix print format in core/dp/txrx3.0/dp_fisa_rx.c Both cds_ieee80211_common_i.h and net/ieee80211_radiotap.h define IEEE80211_CHAN_*, so only one header is needed in wlan_hdd_tx_rx.c Change-Id: Ie9c3a7ea04e9b71acf96f007515a7ae6c0def938 CRs-Fixed: 2644359
This commit is contained in:
parent
11ec38deb4
commit
83c7c370d1
@ -186,7 +186,7 @@ get_flow_tuple_from_nbuf(hal_soc_handle_t hal_soc_hdl,
|
||||
|
||||
qdf_nbuf_push_head(nbuf, RX_PKT_TLVS_LEN + l2_hdr_offset);
|
||||
|
||||
dp_fisa_debug("head_skb: %pk head_skb->next:%pk head_skb->data:%pk len %d data_len",
|
||||
dp_fisa_debug("head_skb: %pk head_skb->next:%pk head_skb->data:%pk len %d data_len %d",
|
||||
nbuf, qdf_nbuf_next(nbuf), qdf_nbuf_data(nbuf), nbuf->len,
|
||||
nbuf->data_len);
|
||||
}
|
||||
@ -903,7 +903,7 @@ static int dp_add_nbuf_to_fisa_flow(struct dp_rx_fst *fisa_hdl,
|
||||
hal_soc_handle_t hal_soc_hdl = fisa_hdl->soc_hdl->hal_soc;
|
||||
|
||||
dump_tlvs(hal_soc_hdl, rx_tlv_hdr, QDF_TRACE_LEVEL_ERROR);
|
||||
dp_fisa_debug("nbuf: %pk nbuf->next:%pk nbuf->data:%pk len %d data_len",
|
||||
dp_fisa_debug("nbuf: %pk nbuf->next:%pk nbuf->data:%pk len %d data_len %d",
|
||||
nbuf, qdf_nbuf_next(nbuf), qdf_nbuf_data(nbuf), nbuf->len,
|
||||
nbuf->data_len);
|
||||
|
||||
@ -1089,8 +1089,8 @@ QDF_STATUS dp_rx_dump_fisa_stats(struct dp_soc *soc)
|
||||
sw_ft_entry->napi_id);
|
||||
dp_info("num msdu aggr %d", sw_ft_entry->aggr_count);
|
||||
dp_info("flush count %d", sw_ft_entry->flush_count);
|
||||
dp_info("bytes_aggregated %d", sw_ft_entry->bytes_aggregated);
|
||||
dp_info("avg aggregation %d",
|
||||
dp_info("bytes_aggregated %llu", sw_ft_entry->bytes_aggregated);
|
||||
dp_info("avg aggregation %llu",
|
||||
sw_ft_entry->bytes_aggregated / sw_ft_entry->flush_count
|
||||
);
|
||||
print_flow_tuple(&sw_ft_entry->rx_flow_tuple_info);
|
||||
|
@ -39,7 +39,6 @@
|
||||
#include <wlan_hdd_p2p.h>
|
||||
#include <linux/wireless.h>
|
||||
#include <net/cfg80211.h>
|
||||
#include <net/ieee80211_radiotap.h>
|
||||
#include "sap_api.h"
|
||||
#include "wlan_hdd_wmm.h"
|
||||
#include "wlan_hdd_tdls.h"
|
||||
@ -62,6 +61,8 @@
|
||||
#include "dp_txrx.h"
|
||||
#if defined(WLAN_SUPPORT_RX_FISA)
|
||||
#include "dp_fisa_rx.h"
|
||||
#else
|
||||
#include <net/ieee80211_radiotap.h>
|
||||
#endif
|
||||
#include <ol_defines.h>
|
||||
#include "cfg_ucfg_api.h"
|
||||
|
Loading…
Reference in New Issue
Block a user