mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-15 01:19:36 +00:00
77d786b6e8
This version takes advantage of all the cleanups to the code. It has been modified to build on older kernels. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
22 lines
558 B
C
22 lines
558 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/* Copyright(c) 2007 - 2011 Realtek Corporation. */
|
|
|
|
#define _RTL8188E_XMIT_C_
|
|
|
|
#include "../include/osdep_service.h"
|
|
#include "../include/drv_types.h"
|
|
#include "../include/rtl8188e_hal.h"
|
|
|
|
void handle_txrpt_ccx_88e(struct adapter *adapter, u8 *buf)
|
|
{
|
|
struct txrpt_ccx_88e *txrpt_ccx = (struct txrpt_ccx_88e *)buf;
|
|
|
|
if (txrpt_ccx->int_ccx) {
|
|
if (txrpt_ccx->pkt_ok)
|
|
rtw_ack_tx_done(&adapter->xmitpriv,
|
|
RTW_SCTX_DONE_SUCCESS);
|
|
else
|
|
rtw_ack_tx_done(&adapter->xmitpriv,
|
|
RTW_SCTX_DONE_CCX_PKT_FAIL);
|
|
}
|
|
}
|