mirror of https://gitee.com/openkylin/linux.git
staging: rtl8188eu: Remove 'u32 len' from struct recv_buf
Remove unused variable 'u32 len'. Signed-off-by: navin patidar <navin.patidar@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
1b2a4fc7a5
commit
74e250e479
|
@ -30,7 +30,6 @@
|
|||
|
||||
void rtl8188eu_init_recvbuf(struct adapter *padapter, struct recv_buf *precvbuf)
|
||||
{
|
||||
precvbuf->len = 0;
|
||||
precvbuf->ref_cnt = 0;
|
||||
}
|
||||
|
||||
|
|
|
@ -238,7 +238,6 @@ struct recv_buf {
|
|||
u32 ref_cnt;
|
||||
struct adapter *adapter;
|
||||
u8 *pbuf;
|
||||
u32 len;
|
||||
struct urb *purb;
|
||||
struct sk_buff *pskb;
|
||||
u8 reuse;
|
||||
|
|
|
@ -61,7 +61,6 @@ int rtw_os_recvbuf_resource_alloc(struct adapter *padapter,
|
|||
precvbuf->pskb = NULL;
|
||||
precvbuf->reuse = false;
|
||||
precvbuf->pbuf = NULL;
|
||||
precvbuf->len = 0;
|
||||
return res;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue