staging: rtl8712: r8712_free_recvframe(): Change return type
Change return type of r8712_free_recvframe from int to void as it always returns _SUCCESS and its return value is never used. Signed-off-by: Nishka Dasgupta <nishkadg.linux@gmail.com> Link: https://lore.kernel.org/r/20190722092341.21030-8-nishkadg.linux@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Родитель
606c5cf07b
Коммит
caecc46bf4
|
@ -120,7 +120,7 @@ void r8712_init_recvbuf(struct _adapter *padapter, struct recv_buf *precvbuf)
|
|||
}
|
||||
}
|
||||
|
||||
int r8712_free_recvframe(union recv_frame *precvframe,
|
||||
void r8712_free_recvframe(union recv_frame *precvframe,
|
||||
struct __queue *pfree_recv_queue)
|
||||
{
|
||||
unsigned long irqL;
|
||||
|
@ -139,7 +139,6 @@ int r8712_free_recvframe(union recv_frame *precvframe,
|
|||
precvpriv->free_recvframe_cnt++;
|
||||
}
|
||||
spin_unlock_irqrestore(&pfree_recv_queue->lock, irqL);
|
||||
return _SUCCESS;
|
||||
}
|
||||
|
||||
static void update_recvframe_attrib_from_recvstat(struct rx_pkt_attrib *pattrib,
|
||||
|
|
|
@ -128,7 +128,7 @@ struct sta_recv_priv {
|
|||
|
||||
/* get a free recv_frame from pfree_recv_queue */
|
||||
union recv_frame *r8712_alloc_recvframe(struct __queue *pfree_recv_queue);
|
||||
int r8712_free_recvframe(union recv_frame *precvframe,
|
||||
void r8712_free_recvframe(union recv_frame *precvframe,
|
||||
struct __queue *pfree_recv_queue);
|
||||
void r8712_free_recvframe_queue(struct __queue *pframequeue,
|
||||
struct __queue *pfree_recv_queue);
|
||||
|
|
Загрузка…
Ссылка в новой задаче