rtl8188eu: Convert typedef for _pkt into struct sk_buff

Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
This commit is contained in:
Larry Finger 2013-07-24 17:03:54 -05:00
parent 9c56f20d4c
commit 3e3d47445a
11 changed files with 30 additions and 46 deletions

View file

@ -342,7 +342,7 @@ static s32 pre_recv_entry(union recv_frame *precvframe, struct recv_stat *prxsta
return _SUCCESS;
}
static int recvbuf2recvframe(_adapter *padapter, _pkt *pskb)
static int recvbuf2recvframe(_adapter *padapter, struct sk_buff *pskb)
{
u8 *pbuf;
u8 shift_sz = 0;
@ -351,7 +351,7 @@ static int recvbuf2recvframe(_adapter *padapter, _pkt *pskb)
s32 transfer_len;
struct recv_stat *prxstat;
struct phy_stat *pphy_status = NULL;
_pkt *pkt_copy = NULL;
struct sk_buff *pkt_copy = NULL;
union recv_frame *precvframe = NULL;
struct rx_pkt_attrib *pattrib = NULL;
struct hal_data_8188e *pHalData = GET_HAL_DATA(padapter);
@ -537,7 +537,7 @@ _exit_recvbuf2recvframe:
void rtl8188eu_recv_tasklet(void *priv)
{
_pkt *pskb;
struct sk_buff *pskb;
_adapter *padapter = (_adapter*)priv;
struct recv_priv *precvpriv = &padapter->recvpriv;