summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuan-Gu Wei <ygwei@qca.qualcomm.com>2014-06-20 20:23:57 +0800
committerAkash Patel <c_akashp@qca.qualcomm.com>2014-06-21 02:10:01 -0700
commit1bbcaf758ff77bfd902ad30399460d80e333a4e6 (patch)
tree7bc4c766c2d6dff3d82ae40b24d2cf75c1b46434
parentcd8e4c0545e9747c7c0fc93dcb877725fc37e8d5 (diff)
qcacld: Revert change that set AC when ACM is set in high latency mode
The change introduces some regression when operating at security mode in ROME SDIO/USB. Revert this change. Change-Id: If2f99394ecc05374b5c3e95a9ea28f9339ec8254 CRs-fixed: 683388
-rw-r--r--CORE/CLD_TXRX/TXRX/ol_tx_classify.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/CORE/CLD_TXRX/TXRX/ol_tx_classify.c b/CORE/CLD_TXRX/TXRX/ol_tx_classify.c
index 5418ad2d47dc..631410d2503e 100644
--- a/CORE/CLD_TXRX/TXRX/ol_tx_classify.c
+++ b/CORE/CLD_TXRX/TXRX/ol_tx_classify.c
@@ -272,14 +272,10 @@ ol_tx_tid(
if (pdev->frame_format == wlan_frm_fmt_raw) {
tx_msdu_info->htt.info.l2_hdr_type = htt_pkt_type_raw;
- tid = tx_msdu_info->htt.info.ext_tid == ADF_NBUF_TX_EXT_TID_INVALID ?
- ol_tx_tid_by_raw_type(datap, tx_msdu_info) :
- tx_msdu_info->htt.info.ext_tid;
+ tid = ol_tx_tid_by_raw_type(datap, tx_msdu_info);
} else if (pdev->frame_format == wlan_frm_fmt_802_3) {
tx_msdu_info->htt.info.l2_hdr_type = htt_pkt_type_ethernet;
- tid = tx_msdu_info->htt.info.ext_tid == ADF_NBUF_TX_EXT_TID_INVALID ?
- ol_tx_tid_by_ether_type(datap, tx_msdu_info) :
- tx_msdu_info->htt.info.ext_tid;
+ tid = ol_tx_tid_by_ether_type(datap, tx_msdu_info);
} else if (pdev->frame_format == wlan_frm_fmt_native_wifi) {
struct llc_snap_hdr_t *llc;