1 /****************************************************************************** 2 * 3 * Copyright(c) 2016 - 2017 Realtek Corporation. 4 * 5 * This program is free software; you can redistribute it and/or modify it 6 * under the terms of version 2 of the GNU General Public License as 7 * published by the Free Software Foundation. 8 * 9 * This program is distributed in the hope that it will be useful, but WITHOUT 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 12 * more details. 13 * 14 *****************************************************************************/ 15 #ifndef _RTL8821CS_XMIT_H_ 16 #define _RTL8821CS_XMIT_H_ 17 18 #include <drv_types.h> /* PADAPTER, rtw_xmit.h and etc. */ 19 20 s32 rtl8821cs_init_xmit_priv(PADAPTER); 21 void rtl8821cs_free_xmit_priv(PADAPTER); 22 #ifdef CONFIG_RTW_MGMT_QUEUE 23 s32 rtl8821cs_hal_mgmt_xmit_enqueue(PADAPTER, struct xmit_frame *); 24 #endif 25 s32 rtl8821cs_hal_xmit_enqueue(PADAPTER, struct xmit_frame *); 26 s32 rtl8821cs_hal_xmit(PADAPTER, struct xmit_frame *); 27 s32 rtl8821cs_mgnt_xmit(PADAPTER, struct xmit_frame *); 28 29 s32 rtl8821cs_xmit_buf_handler(PADAPTER); 30 thread_return rtl8821cs_xmit_thread(thread_context); 31 32 #endif /* _RTL8821CS_XMIT_H_ */ 33