mirror of https://gitee.com/openkylin/linux.git
staging: rtl8188eu: Remove function rtw_dequeue_recvbuf()
rtw_dequeue_recvbuf() is not being used by driver. Signed-off-by: navin patidar <navin.patidar@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b9fb433072
commit
d27ab0b9df
|
@ -313,31 +313,6 @@ int rtw_enqueue_recvbuf(struct recv_buf *precvbuf, struct __queue *queue)
|
|||
return _SUCCESS;
|
||||
}
|
||||
|
||||
struct recv_buf *rtw_dequeue_recvbuf (struct __queue *queue)
|
||||
{
|
||||
unsigned long irqL;
|
||||
struct recv_buf *precvbuf;
|
||||
struct list_head *plist, *phead;
|
||||
|
||||
spin_lock_irqsave(&queue->lock, irqL);
|
||||
|
||||
if (_rtw_queue_empty(queue)) {
|
||||
precvbuf = NULL;
|
||||
} else {
|
||||
phead = get_list_head(queue);
|
||||
|
||||
plist = phead->next;
|
||||
|
||||
precvbuf = container_of(plist, struct recv_buf, list);
|
||||
|
||||
rtw_list_delete(&precvbuf->list);
|
||||
}
|
||||
|
||||
spin_unlock_irqrestore(&queue->lock, irqL);
|
||||
|
||||
return precvbuf;
|
||||
}
|
||||
|
||||
static int recvframe_chkmic(struct adapter *adapter,
|
||||
struct recv_frame *precvframe)
|
||||
{
|
||||
|
|
|
@ -304,7 +304,6 @@ void rtw_free_recvframe_queue(struct __queue *pframequeue,
|
|||
u32 rtw_free_uc_swdec_pending_queue(struct adapter *adapter);
|
||||
int rtw_enqueue_recvbuf_to_head(struct recv_buf *buf, struct __queue *queue);
|
||||
int rtw_enqueue_recvbuf(struct recv_buf *precvbuf, struct __queue *queue);
|
||||
struct recv_buf *rtw_dequeue_recvbuf(struct __queue *queue);
|
||||
|
||||
void rtw_reordering_ctrl_timeout_handler(void *pcontext);
|
||||
|
||||
|
|
Loading…
Reference in New Issue