2022-06-08 23:46:35 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/* Copyright(c) 2007 - 2011 Realtek Corporation. */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2022-06-08 23:46:35 +00:00
|
|
|
#define _RTL8188E_XMIT_C_
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2022-06-08 23:46:35 +00:00
|
|
|
#include "../include/osdep_service.h"
|
|
|
|
#include "../include/drv_types.h"
|
|
|
|
#include "../include/rtl8188e_hal.h"
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2013-07-27 01:08:39 +00:00
|
|
|
void handle_txrpt_ccx_88e(struct adapter *adapter, u8 *buf)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
|
|
|
struct txrpt_ccx_88e *txrpt_ccx = (struct txrpt_ccx_88e *)buf;
|
|
|
|
|
|
|
|
if (txrpt_ccx->int_ccx) {
|
|
|
|
if (txrpt_ccx->pkt_ok)
|
2013-08-09 03:23:49 +00:00
|
|
|
rtw_ack_tx_done(&adapter->xmitpriv,
|
|
|
|
RTW_SCTX_DONE_SUCCESS);
|
2013-05-08 21:45:39 +00:00
|
|
|
else
|
2013-08-09 03:23:49 +00:00
|
|
|
rtw_ack_tx_done(&adapter->xmitpriv,
|
|
|
|
RTW_SCTX_DONE_CCX_PKT_FAIL);
|
2013-05-08 21:45:39 +00:00
|
|
|
}
|
|
|
|
}
|