diff options
| author | Service qcabuildsw <qcabuildsw@localhost> | 2016-07-13 11:12:10 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2016-07-13 11:12:10 -0700 |
| commit | 2ea922dbc96ada6bba34b8e01a69baf17231cb95 (patch) | |
| tree | 2a8c3dd13f0293b3ee3418068d67fb0b4d014d93 | |
| parent | e8d9431b15d93fbf4285eb67d6b948ab84f1fed2 (diff) | |
| parent | 8c46db975927eb8b4bd6b315d31c7658249bbd21 (diff) | |
Merge "qcacld-3.0: Correct fw common references in dp layer" into wlan-cld3.driver.lnx.1.1-dev
| -rw-r--r-- | core/dp/htt/htt_fw_stats.c | 26 | ||||
| -rw-r--r-- | core/dp/htt/htt_rx.c | 2 | ||||
| -rw-r--r-- | core/dp/txrx/ol_txrx.c | 1 | ||||
| -rw-r--r-- | core/wma/inc/wma.h | 1 |
4 files changed, 16 insertions, 14 deletions
diff --git a/core/dp/htt/htt_fw_stats.c b/core/dp/htt/htt_fw_stats.c index ea54e1efd003..be43ea689bb4 100644 --- a/core/dp/htt/htt_fw_stats.c +++ b/core/dp/htt/htt_fw_stats.c @@ -855,11 +855,11 @@ htt_t2h_tx_ppdu_log_print(struct ol_fw_tx_dbg_ppdu_msg_hdr *hdr, /* fields used for both concise and complete printouts */ start_seq_num = - ((*(msg_word + OL_FW_TX_DBG_PPDU_START_SEQ_NUM_16)) & + ((*(msg_word + OL_FW_TX_DBG_PPDU_START_SEQ_NUM_WORD)) & OL_FW_TX_DBG_PPDU_START_SEQ_NUM_M) >> OL_FW_TX_DBG_PPDU_START_SEQ_NUM_S; complete = - ((*(msg_word + OL_FW_TX_DBG_PPDU_COMPLETE_16)) & + ((*(msg_word + OL_FW_TX_DBG_PPDU_COMPLETE_WORD)) & OL_FW_TX_DBG_PPDU_COMPLETE_M) >> OL_FW_TX_DBG_PPDU_COMPLETE_S; @@ -878,31 +878,31 @@ htt_t2h_tx_ppdu_log_print(struct ol_fw_tx_dbg_ppdu_msg_hdr *hdr, start_pn_lsbs = ((* (msg_word + - OL_FW_TX_DBG_PPDU_START_PN_LSBS_16)) & + OL_FW_TX_DBG_PPDU_START_PN_LSBS_WORD)) & OL_FW_TX_DBG_PPDU_START_PN_LSBS_M) >> OL_FW_TX_DBG_PPDU_START_PN_LSBS_S; num_mpdus = - ((*(msg_word + OL_FW_TX_DBG_PPDU_NUM_MPDUS_16))& + ((*(msg_word + OL_FW_TX_DBG_PPDU_NUM_MPDUS_WORD))& OL_FW_TX_DBG_PPDU_NUM_MPDUS_M) >> OL_FW_TX_DBG_PPDU_NUM_MPDUS_S; peer_id = - ((*(msg_word + OL_FW_TX_DBG_PPDU_PEER_ID_16)) & + ((*(msg_word + OL_FW_TX_DBG_PPDU_PEER_ID_WORD)) & OL_FW_TX_DBG_PPDU_PEER_ID_M) >> OL_FW_TX_DBG_PPDU_PEER_ID_S; ext_tid = - ((*(msg_word + OL_FW_TX_DBG_PPDU_EXT_TID_16)) & + ((*(msg_word + OL_FW_TX_DBG_PPDU_EXT_TID_WORD)) & OL_FW_TX_DBG_PPDU_EXT_TID_M) >> OL_FW_TX_DBG_PPDU_EXT_TID_S; rate_code = - ((*(msg_word + OL_FW_TX_DBG_PPDU_RATE_CODE_16))& + ((*(msg_word + OL_FW_TX_DBG_PPDU_RATE_CODE_WORD))& OL_FW_TX_DBG_PPDU_RATE_CODE_M) >> OL_FW_TX_DBG_PPDU_RATE_CODE_S; rate_flags = - ((*(msg_word + OL_FW_TX_DBG_PPDU_RATEFLAGS_16))& + ((*(msg_word + OL_FW_TX_DBG_PPDU_RATE_FLAGS_WORD))& OL_FW_TX_DBG_PPDU_RATE_FLAGS_M) >> OL_FW_TX_DBG_PPDU_RATE_FLAGS_S; tries = - ((*(msg_word + OL_FW_TX_DBG_PPDU_TRIES_16)) & + ((*(msg_word + OL_FW_TX_DBG_PPDU_TRIES_WORD)) & OL_FW_TX_DBG_PPDU_TRIES_M) >> OL_FW_TX_DBG_PPDU_TRIES_S; @@ -929,9 +929,9 @@ htt_t2h_tx_ppdu_log_print(struct ol_fw_tx_dbg_ppdu_msg_hdr *hdr, qdf_print (" enqueued and acked MPDU bitmaps:"); htt_t2h_tx_ppdu_bitmaps_pr(msg_word + - OL_FW_TX_DBG_PPDU_ENQUEUED_LSBS_16, + OL_FW_TX_DBG_PPDU_ENQUEUED_LSBS_WORD, msg_word + - OL_FW_TX_DBG_PPDU_BLOCK_ACK_LSBS_16); + OL_FW_TX_DBG_PPDU_BLOCK_ACK_LSBS_WORD); } else { qdf_print (" enqueued: %d us, not yet completed", @@ -968,9 +968,9 @@ htt_t2h_tx_ppdu_log_print(struct ol_fw_tx_dbg_ppdu_msg_hdr *hdr, qdf_print("enqueued and acked MPDU bitmaps:"); if (complete) { htt_t2h_tx_ppdu_bitmaps_pr(msg_word + - OL_FW_TX_DBG_PPDU_ENQUEUED_LSBS_16, + OL_FW_TX_DBG_PPDU_ENQUEUED_LSBS_WORD, msg_word + - OL_FW_TX_DBG_PPDU_BLOCK_ACK_LSBS_16); + OL_FW_TX_DBG_PPDU_BLOCK_ACK_LSBS_WORD); } else { qdf_print("(not completed)"); } diff --git a/core/dp/htt/htt_rx.c b/core/dp/htt/htt_rx.c index 641e2c09a65c..e3f334088014 100644 --- a/core/dp/htt/htt_rx.c +++ b/core/dp/htt/htt_rx.c @@ -2029,7 +2029,7 @@ htt_rx_amsdu_rx_in_order_pop_ll(htt_pdev_handle pdev, msdu_count--; if (qdf_unlikely((*((u_int8_t *) &rx_desc->fw_desc.u.val)) & - FW_RX_DESC_MIC_ERR_M)) { + FW_RX_DESC_ANY_ERR_M)) { uint8_t tid = HTT_RX_IN_ORD_PADDR_IND_EXT_TID_GET( *(u_int32_t *)rx_ind_data); diff --git a/core/dp/txrx/ol_txrx.c b/core/dp/txrx/ol_txrx.c index fcd1831a99ec..130b027038ff 100644 --- a/core/dp/txrx/ol_txrx.c +++ b/core/dp/txrx/ol_txrx.c @@ -80,6 +80,7 @@ #endif #include <cds_concurrency.h> #include "epping_main.h" +#include <a_types.h> #ifdef CONFIG_HL_SUPPORT diff --git a/core/wma/inc/wma.h b/core/wma/inc/wma.h index 9eb42a5e85f4..323b8a384da4 100644 --- a/core/wma/inc/wma.h +++ b/core/wma/inc/wma.h @@ -49,6 +49,7 @@ #include "wmi_unified_api.h" #include "cdp_txrx_cmn.h" #include "ol_defines.h" +#include "dbglog.h" /* Platform specific configuration for max. no. of fragments */ #define QCA_OL_11AC_TX_MAX_FRAGS 2 |
