staging: rtl8188eu: Remove 'void *precvbuf' from struct recv_frame
authornavin patidar <navin.patidar@gmail.com>
Wed, 7 May 2014 04:01:16 +0000 (09:31 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 23 May 2014 16:41:52 +0000 (01:41 +0900)
Remove unused variable 'void *precvbuf'.

Signed-off-by: navin patidar <navin.patidar@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/hal/usb_ops_linux.c
drivers/staging/rtl8188eu/include/rtw_recv.h

index d9f60ab8c44d262fad77c6503d42597f414f0cc8..ca81530f9cf5cca472d045053829e923cf1f2d9d 100644 (file)
@@ -333,7 +333,6 @@ static int recvbuf2recvframe(struct adapter *adapt, struct sk_buff *pskb)
                }
 
                _rtw_init_listhead(&precvframe->list);
-               precvframe->precvbuf = NULL;    /* can't access the precvbuf for new arch. */
                precvframe->len = 0;
 
                update_recvframe_attrib_88e(precvframe, prxstat);
index dac2e0ccbc178ac9718f7b60e227af508fccfb5e..e14ba986c36f3212325ab451faf2b31fcb395f4b 100644 (file)
@@ -261,7 +261,6 @@ struct recv_frame {
        u8 *rx_data;
        u8 *rx_tail;
        u8 *rx_end;
-       void *precvbuf;
        struct sta_info *psta;
        /* for A-MPDU Rx reordering buffer control */
        struct recv_reorder_ctrl *preorder_ctrl;