mirror of
https://github.com/lwfinger/rtl8188eu.git
synced 2024-11-14 09:09:35 +00:00
4de1397841
Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
17 lines
417 B
C
17 lines
417 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/* Copyright(c) 2007 - 2016 Realtek Corporation. All rights reserved. */
|
|
|
|
#define _RTL8188EU_RECV_C_
|
|
|
|
#include <drv_types.h>
|
|
#include <rtl8188e_hal.h>
|
|
|
|
int rtl8188eu_init_recv_priv(_adapter *padapter)
|
|
{
|
|
return usb_init_recv_priv(padapter, INTERRUPT_MSG_FORMAT_LEN);
|
|
}
|
|
|
|
void rtl8188eu_free_recv_priv(_adapter *padapter)
|
|
{
|
|
usb_free_recv_priv(padapter, INTERRUPT_MSG_FORMAT_LEN);
|
|
}
|