···11-/******************************************************************************22- *33- * Copyright(c) 2007 - 2012 Realtek Corporation. All rights reserved.44- *55- * This program is free software; you can redistribute it and/or modify it66- * under the terms of version 2 of the GNU General Public License as77- * published by the Free Software Foundation.88- *99- * This program is distributed in the hope that it will be useful, but WITHOUT1010- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or1111- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for1212- * more details.1313- *1414- ******************************************************************************/1515-#define _RTL8723A_XMIT_C_1616-1717-#include <osdep_service.h>1818-#include <drv_types.h>1919-#include <rtl8723a_hal.h>2020-2121-void handle_txrpt_ccx_8723a(struct rtw_adapter *adapter, void *buf)2222-{2323- struct txrpt_ccx_8723a *txrpt_ccx = buf;2424-2525- if (txrpt_ccx->int_ccx) {2626- if (txrpt_ccx->pkt_ok)2727- rtw_ack_tx_done23a(&adapter->xmitpriv, RTW_SCTX_DONE_SUCCESS);2828- else2929- rtw_ack_tx_done23a(&adapter->xmitpriv, RTW_SCTX_DONE_CCX_PKT_FAIL);3030- }3131-}
-1
drivers/staging/rtl8723au/include/rtw_xmit.h
···379379u8 qos_acm23a(u8 acm_mask, u8 priority);380380u32 rtw_get_ff_hwaddr23a(struct xmit_frame *pxmitframe);381381int rtw_ack_tx_wait23a(struct xmit_priv *pxmitpriv, u32 timeout_ms);382382-void rtw_ack_tx_done23a(struct xmit_priv *pxmitpriv, int status);383382384383/* include after declaring struct xmit_buf, in order to avoid warning */385384#include <xmit_osdep.h>