staging: rtl8188eu: Remove 'alloc_sz' from struct recv_buf

Driver isn't making any use of value stored in alloc_sz variable.

Signed-off-by: navin patidar <navin.patidar@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
navin patidar 2014-05-03 17:15:28 +05:30 committed by Greg Kroah-Hartman
parent f0f4499d70
commit 1b2a4fc7a5
2 changed files with 0 additions and 2 deletions

View File

@ -61,7 +61,6 @@ int rtl8188eu_init_recv_priv(struct adapter *padapter)
precvbuf = (struct recv_buf *)precvpriv->precv_buf;
for (i = 0; i < NR_RECVBUFF; i++) {
precvbuf->alloc_sz = MAX_RECVBUF_SZ;
res = rtw_os_recvbuf_resource_alloc(padapter, precvbuf);
if (res == _FAIL)
break;

View File

@ -240,7 +240,6 @@ struct recv_buf {
u8 *pbuf;
u32 len;
struct urb *purb;
u32 alloc_sz;
struct sk_buff *pskb;
u8 reuse;
};