rtl8188eu: Flatten hap/

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2021-07-22 18:57:16 -05:00
parent 81aeb84017
commit 4de1397841
603 changed files with 71 additions and 220876 deletions

17
rtl8188eu_recv.c Normal file
View file

@ -0,0 +1,17 @@
// 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);
}