mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-22 04:23:39 +00:00
rtl8188eu: Remove DBG_CCX - not defined
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
parent
46115db809
commit
dcef8c563c
2 changed files with 1 additions and 12 deletions
|
@ -48,10 +48,6 @@ void handle_txrpt_ccx_88e(_adapter *adapter, u8 *buf)
|
|||
{
|
||||
struct txrpt_ccx_88e *txrpt_ccx = (struct txrpt_ccx_88e *)buf;
|
||||
|
||||
#ifdef DBG_CCX
|
||||
dump_txrpt_ccx_88e(buf);
|
||||
#endif
|
||||
|
||||
if (txrpt_ccx->int_ccx) {
|
||||
if (txrpt_ccx->pkt_ok)
|
||||
rtw_ack_tx_done(&adapter->xmitpriv, RTW_SCTX_DONE_SUCCESS);
|
||||
|
|
|
@ -346,15 +346,8 @@ static s32 update_txdesc(struct xmit_frame *pxmitframe, u8 *pmem, s32 sz ,u8 bag
|
|||
|
||||
/* offset 8 */
|
||||
/* CCX-TXRPT ack for xmit mgmt frames. */
|
||||
if (pxmitframe->ack_report) {
|
||||
#ifdef DBG_CCX
|
||||
static u16 ccx_sw = 0x123;
|
||||
ptxdesc->txdw7 |= cpu_to_le32(((ccx_sw)<<16)&0x0fff0000);
|
||||
DBG_88E("%s set ccx, sw:0x%03x\n", __func__, ccx_sw);
|
||||
ccx_sw = (ccx_sw+1)%0xfff;
|
||||
#endif
|
||||
if (pxmitframe->ack_report)
|
||||
ptxdesc->txdw2 |= cpu_to_le32(BIT(19));
|
||||
}
|
||||
|
||||
/* offset 12 */
|
||||
ptxdesc->txdw3 |= cpu_to_le32((pattrib->seqnum<<SEQ_SHT)&0x0FFF0000);
|
||||
|
|
Loading…
Reference in a new issue