]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
staging: rtl8188eu: Remove function rtw_enqueue_recvbuf()
authornavin patidar <navin.patidar@gmail.com>
Sat, 3 May 2014 11:45:20 +0000 (17:15 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 4 May 2014 00:29:10 +0000 (20:29 -0400)
rtw_enqueue_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>
drivers/staging/rtl8188eu/core/rtw_recv.c
drivers/staging/rtl8188eu/include/rtw_recv.h

index 21aa89d19abd496ed0ab78aa50847ad10416a384..da26fa5cb25997cdd8027d7e18348624bfdd3b47 100644 (file)
@@ -289,18 +289,6 @@ u32 rtw_free_uc_swdec_pending_queue(struct adapter *adapter)
        return cnt;
 }
 
-int rtw_enqueue_recvbuf(struct recv_buf *precvbuf, struct __queue *queue)
-{
-       unsigned long irqL;
-       spin_lock_irqsave(&queue->lock, irqL);
-
-       rtw_list_delete(&precvbuf->list);
-
-       rtw_list_insert_tail(&precvbuf->list, get_list_head(queue));
-       spin_unlock_irqrestore(&queue->lock, irqL);
-       return _SUCCESS;
-}
-
 static int recvframe_chkmic(struct adapter *adapter,
                            struct recv_frame *precvframe)
 {
index 21ce405c87e4abe4a1e36b625b0aab2a0d620b90..677859e33b13b1184009c983e63fadd15168903d 100644 (file)
@@ -302,7 +302,6 @@ int rtw_enqueue_recvframe(struct recv_frame *precvframe, struct __queue *queue);
 void rtw_free_recvframe_queue(struct __queue *pframequeue,
                              struct __queue *pfree_recv_queue);
 u32 rtw_free_uc_swdec_pending_queue(struct adapter *adapter);
-int rtw_enqueue_recvbuf(struct recv_buf *precvbuf, struct __queue *queue);
 
 void rtw_reordering_ctrl_timeout_handler(void *pcontext);