2019-04-22 12:31:01 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
/* Copyright(c) 2007 - 2016 Realtek Corporation. All rights reserved. */
|
|
|
|
|
2018-10-14 19:07:45 -05:00
|
|
|
#define _RTL8188EU_RECV_C_
|
2014-12-11 15:15:04 -06:00
|
|
|
|
2018-10-14 19:07:45 -05:00
|
|
|
#include <drv_types.h>
|
|
|
|
#include <rtl8188e_hal.h>
|
2014-12-11 15:15:04 -06:00
|
|
|
|
2018-10-14 19:07:45 -05:00
|
|
|
int rtl8188eu_init_recv_priv(_adapter *padapter)
|
|
|
|
{
|
|
|
|
return usb_init_recv_priv(padapter, INTERRUPT_MSG_FORMAT_LEN);
|
|
|
|
}
|
2014-12-11 15:15:04 -06:00
|
|
|
|
2018-10-14 19:07:45 -05:00
|
|
|
void rtl8188eu_free_recv_priv(_adapter *padapter)
|
|
|
|
{
|
|
|
|
usb_free_recv_priv(padapter, INTERRUPT_MSG_FORMAT_LEN);
|
|
|
|
}
|