Path: blob/master/ALFA-W1F1/RTL8814AU/hal/rtl8814a/usb/rtl8814au_recv.c
1308 views
/******************************************************************************1*2* Copyright(c) 2007 - 2017 Realtek Corporation.3*4* This program is free software; you can redistribute it and/or modify it5* under the terms of version 2 of the GNU General Public License as6* published by the Free Software Foundation.7*8* This program is distributed in the hope that it will be useful, but WITHOUT9* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or10* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for11* more details.12*13*****************************************************************************/14#define _RTL8814AU_RECV_C_1516/* #include <drv_types.h> */17#include <rtl8814a_hal.h>1819int rtl8814au_init_recv_priv(_adapter *padapter)20{21return usb_init_recv_priv(padapter, INTERRUPT_MSG_FORMAT_LEN);22}2324void rtl8814au_free_recv_priv(_adapter *padapter)25{26usb_free_recv_priv(padapter, INTERRUPT_MSG_FORMAT_LEN);27}282930