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