Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2e2f78d0 authored by Ivan Safonov's avatar Ivan Safonov Committed by Greg Kroah-Hartman
Browse files

staging:r8188eu: remove pkt_newalloc member of the recv_buf structure



This member does not used.

Signed-off-by: default avatarIvan Safonov <insafonov@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f34395c8
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -239,7 +239,6 @@ struct recv_buf {
struct recv_frame {
struct recv_frame {
	struct list_head list;
	struct list_head list;
	struct sk_buff	 *pkt;
	struct sk_buff	 *pkt;
	struct sk_buff	 *pkt_newalloc;
	struct adapter  *adapter;
	struct adapter  *adapter;
	struct rx_pkt_attrib attrib;
	struct rx_pkt_attrib attrib;
	uint  len;
	uint  len;
+0 −1
Original line number Original line Diff line number Diff line
@@ -24,7 +24,6 @@
/* alloc os related resource in struct recv_frame */
/* alloc os related resource in struct recv_frame */
void rtw_os_recv_resource_alloc(struct recv_frame *precvframe)
void rtw_os_recv_resource_alloc(struct recv_frame *precvframe)
{
{
	precvframe->pkt_newalloc = NULL;
	precvframe->pkt = NULL;
	precvframe->pkt = NULL;
}
}