Commit 0b47649c authored by Sudip Mukherjee's avatar Sudip Mukherjee Committed by Greg Kroah-Hartman
Browse files

staging: rtl8188eu: make function void



The return value of rtw_os_recv_resource_alloc() is never checked, so
make it as void. Moreover as of now the function can not fail.

Signed-off-by: default avatarSudip Mukherjee <sudip@vectorindia.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 1695cd29
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -89,7 +89,7 @@ int _rtw_init_recv_priv(struct recv_priv *precvpriv, struct adapter *padapter)
		list_add_tail(&(precvframe->list),
				     &(precvpriv->free_recv_queue.queue));

		res = rtw_os_recv_resource_alloc(precvframe);
		rtw_os_recv_resource_alloc(precvframe);

		precvframe->len = 0;

+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ void rtw_handle_tkip_mic_err(struct adapter *padapter, u8 bgroup);
int rtw_init_recv_priv(struct recv_priv *precvpriv, struct adapter *padapter);
void rtw_free_recv_priv(struct recv_priv *precvpriv);

int rtw_os_recv_resource_alloc(struct recv_frame *recvfr);
void rtw_os_recv_resource_alloc(struct recv_frame *recvfr);

int rtw_os_recvbuf_resource_alloc(struct adapter *adapt, struct recv_buf *buf);

+1 −2
Original line number Diff line number Diff line
@@ -29,11 +29,10 @@
#include <usb_ops_linux.h>

/* alloc os related resource in struct recv_frame */
int 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;
	return _SUCCESS;
}

/* alloc os related resource in struct recv_buf */